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