Sign in
dart
/
sdk.git
/
ed0131bc7c149fe752743264463cb87c79d0c27b
/
.
/
pkg
/
front_end
/
testcases
/
named_arguments_anywhere
/
redirecting_constructor_initializers.dart.textual_outline.expect
blob: 4ca0a856c9faefa1127ba959413dc880a09716d2 [
file
] [
log
] [
blame
]
class
A
{
A
(
int
x
,
bool
y
,
{
required
String
z
});
A
.
foo
()
:
this
(
42
,
z
:
"foo"
,
false
);
factory A
.
bar
(
int
x
,
bool
y
,
{
required
String
z
})
=
A
;
}
class
B
extends
A
{
B
()
:
super
(
42
,
z
:
"foo"
,
false
);
}
test
()
{}
main
()
{}