Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
inference
/
no_error_when_declared_type_is_num_and_assigned_null.dart.weak.transformed.expect
blob: fb95dc395c22adfc8a8aba898063929f3643e79a [
file
] [
log
] [
blame
]
library test
;
import
self
as
self
;
import
"dart:core"
as
core
;
static
method test1
()
→
dynamic
{
core
::
num
*
x
=
3
;
x
=
null
;
}
static
method main
()
→
dynamic
{
self
::
test1
();
}