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