Sign in
dart
/
sdk.git
/
refs/tags/2.14.0-347.0.dev
/
.
/
pkg
/
front_end
/
parser_testcases
/
error_recovery
/
constructor_recovery_return_type.dart
blob: fd9a67c4957168d053ab4dde4e4af21102ea49ab [
file
] [
log
] [
blame
]
class
Foo
{
void
Foo
()
{
// Not OK.
}
void
Foo
()
:
initializer
=
true
{
// Not OK.
}
void
Foo
.
x
()
{
// Not OK.
}
void
Foo
.
x
()
:
initializer
=
true
{
// Not OK.
}
}