Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
type_promotion_stopped_by_mutation_in_a_closure.dart.weak.transformed.expect
blob: d377034e1408a4a09aed3e200c5235b4b29a714e [
file
] [
log
] [
blame
]
library test
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method main
()
→
dynamic
{
core
::
num
*
n
=
null
;
if
(
n
is
core
::
int
*)
{
core
::
num
*
i
=
n
;
}
()
→
Null
{
n
=
null
;
};
}