blob: da7e43a6612dd170db40eb9d45349f7fb82803d7 [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) {}