blob: 07b098cff965b5543482ce90ae5597c4f3a43440 [file] [log] [blame]
// @dart = 2.9
a b(c) = d;
class C {
const C.constant();
C.missingFactoryKeyword() = C.constant;
const factory C.good() = C.constant;
C notEvenAConstructor(a) = h;
}
main() {}