Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-110.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
try_finally.dart.weak.expect
blob: bb417be4d255574fb7701d1b48e74158b7aeffbe [
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
.
call
();
}
finally
{
core
::
int
*
x
=
0
;
}
}
static
method main
()
→
dynamic
{}