Sign in
dart
/
sdk.git
/
cf9f45f1d4bd4ba2d4475efd33e39e96b56be706
/
.
/
pkg
/
front_end
/
testcases
/
dart2js
/
issue56803.dart.textual_outline_modelled.expect
blob: c43f36cd3d044c5f7f6c5348afdfcf602007dcbc [
file
] [
log
] [
blame
]
const
String
?
maybe
=
bool
.
fromEnvironment
(
"not there"
)
?
"string"
:
null
;
extension type
const
Ext
.
_
(
String
_
)
implements
String
{
const
Ext
()
:
assert
(
maybe
!=
null
,
"Must not be null"
),
_
=
"OK"
;
}
void
main
()
{}