Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
type_promotion_stopped_by_access_in_a_closure.dart.weak.transformed.expect
blob: db5f0efdf3c051b6b884c8a2dc91edd50dbdb651 [
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
;
};
}
n
=
null
;
}