blob: 900fab82431de5156c4305429e939464a63da58f [file] [log] [blame]
library test;
abstract class Bar {
@Foo(const [])
Bar();
@Foo(const [])
var x;
@Foo(const [])
void f();
}
class Foo {
const Foo(List<String> l);
}
main() {}