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