Sign in
dart
/
sdk
/
base
/
.
/
pkg
/
front_end
/
testcases
/
patterns
/
exhaustiveness
/
not_null.dart.textual_outline.expect
blob: 6a03f6cbfeae46ee2f29d5544cca1554da1cb6f6 [
file
] [
log
] [
blame
]
method
(
int
?
i
)
=>
switch
(
i
)
{
==
null
=>
null
,
!=
null
=>
i
,
_
=>
null
,
};