Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-209.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
runtime_checks_new
/
implicit_downcast_field.dart.textual_outline_modelled.expect
blob: ddb4de8e07fa302531fc3ea120d0be7aa5a42aeb [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
Object
o
=
1
;
bool
topLevelValue
=
o
;
class
C
{
bool
instanceValue
=
o
;
static
bool
staticValue
=
o
;
}
main
()
{}