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