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