Sign in
dart
/
sdk
/
bccfb956229b873497ec2bc3c92c6acbdcc6484e
/
.
/
pkg
/
front_end
/
testcases
/
wildcard_variables
/
local_var_no_shadowing.dart.strong.modular.expect
blob: 407215a136c156ffbcc0a675c615bae619fb7c05 [
file
] [
log
] [
blame
]
library
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
field core
::
int
_
=
100
;
static
method main
()
→
dynamic
{
wildcard core
::
int
_
=
1
;
wildcard core
::
int
_
=
2
;
self
::
_
=
3
;
}