blob: a081060204f7742510efe3c421f8d53d43971c43 [file] [log] [blame]
// @dart = 2.9
library test;
class C {
void m(@Foo(const []) x) {}
}
class Foo {
const Foo(List<String> l);
}
main() {}
void f(@Foo(const []) x) {}