blob: 8c597df57f0c0b78f8a2389a1deaa0bd0606d2c2 [file] [log] [blame]
// @dart = 2.9
library test;
class Foo {
const Foo(List<String> l);
}
@Foo(const [])
typedef void F();
main() {}