blob: fb5daf28abfa2ed5a6ae5b572ccf698e9a18eab3 [file] [log] [blame]
library test;
class Foo {
const Foo(List<String> l);
const Foo.named(List<String> l);
}
@Foo(const [])
class Bar {}
@Foo.named(const [])
class Baz {}
main() {}