Sign in
dart
/
sdk.git
/
c79dbacc3cac22b983ab8293d177d1cc4d968b95
/
.
/
pkg
/
front_end
/
testcases
/
nnbd
/
issue_39286_2.dart.textual_outline_modelled.expect
blob: bf01dbafbf4090d9ea09da588f0d779e228cabf1 [
file
] [
log
] [
blame
]
class
C
{
C h
()
=>
this
;
D
?
f
()
=>
new
D
();
int
y
=
42
;
}
class
D
{
D g
()
=>
this
;
String
operator
[](
String
s
)
{}
}
main
()
{}
void
test
(
C x
)
{}