Sign in
dart
/
sdk
/
47dc4663d8e0dff1b053838c56bbb1412ef64e0d
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
infer_from_late_variable.dart.strong.transformed.expect
blob: 7cf312b35f76dacb6774dd69c19a6e0f65d94608 [
file
] [
log
] [
blame
]
library
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method f
<
T
extends
core
::
Object
?
=
dynamic
>(
self
::
f
::
T
%
t
)
→
self
::
f
::
T
%
return
t
;
static
method main
()
→
dynamic
{
late core
::
int
local
;
local
=
self
::
f
<
core
::
int
>(
0
);
}