Sign in
dart
/
sdk.git
/
4dbfce19bd54aa7848f3ef626b598f743c39b4b1
/
.
/
pkg
/
front_end
/
testcases
/
bug21938.dart.direct.transformed.expect
blob: a399b1b56150f59fd022667e65c3698fa5355ee2 [
file
] [
log
] [
blame
]
library
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method test
()
→
dynamic
{
core
::
Object
x
;
core
::
Function
f
;
x
.
call
();
x
.
call
(
3
);
f
.
call
(
5
,
2
);
x
.
call
();
f
.
call
;
f
.
call
(
5
,
2
);
}
static
method main
()
→
dynamic
{}