Sign in
dart
/
sdk.git
/
e1e793325c54e85c9a3d84145279694383b74c17
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
try_finally.dart.weak.expect
blob: f52f88a3336bf27c9d488b3e146958f08f518c0e [
file
] [
log
] [
blame
]
library test
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method test
(()
→*
void
f
)
→
void
{
try
{
core
::
int
*
x
=
0
;
f
(){()
→*
void
};
}
finally
{
core
::
int
*
x
=
0
;
}
}
static
method main
()
→
dynamic
{}