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