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.expect
blob: a7faa461a668355eb2a24757c154581a6a95547c [
file
] [
log
] [
blame
]
// @dart = 2.9
library test
;
Object
o
=
1
;
bool
topLevelValue
=
o
;
class
C
{
static
bool
staticValue
=
o
;
bool
instanceValue
=
o
;
}
main
()
{}