Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
issue43363.dart.textual_outline.expect
blob: abcc4906b82a615fc7119cf6db77ad79c4cb4bed [
file
] [
log
] [
blame
]
// @dart = 2.9
class
E
{
final
int
x
;
final
int
y
;
E
()
:
this
.
named
(),
this
.
x
=
1
;
this
.
y
=
2
;
E
.
named
()
:
this
.
x
=
5
,
this
.
y
=
6
;
}
main
()
{}