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