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