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