Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
testcases
/
general
/
implicit_constructor_02.dart.textual_outline_modelled.expect
blob: 73848df50f0ef2318fd56cb74857b2d26fcc9f64 [
file
] [
log
] [
blame
]
// @dart = 2.9
class
A
{
A
(
bool
this
.
v1
,
num
this
.
v2
);
bool
v1
;
num v2
;
}
class
C
=
A
with
M1
;
class
M1
{
num v2
=
-
1
;
}
expect
(
expected
,
actual
)
{}
main
()
{}