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