Sign in
dart
/
sdk.git
/
284a7ee8c5b78c51a1cac9c770244d8093ba121c
/
.
/
pkg
/
front_end
/
testcases
/
dart2js
/
issue56803b.dart.textual_outline.expect
blob: e7ad3cce97d5d07cbfa5594093a6d90c6feadfeb [
file
] [
log
] [
blame
]
const
String
?
maybe
=
bool
.
fromEnvironment
(
"not there"
)
?
"string"
:
null
;
class
Ext
{
final
String
_
;
const
Ext
()
:
assert
(
maybe
!=
null
,
"Must not be null"
),
_
=
"OK"
;
}
void
main
()
{}