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