blob: 404a33d27ba7e4a29be08a4aa9d443bd2550694b [file] [log] [blame]
// @dart=2.9
class Foo {
void Foo() {
// Not OK.
}
void Foo() : initializer = true {
// Not OK.
}
void Foo.x() {
// Not OK.
}
void Foo.x() : initializer = true {
// Not OK.
}
}