blob: 0cfa516a1c917e8480f2fa625475728b75fb20bf [file] [log] [blame]
// @dart = 2.9
library test;
class Foo {
const Foo(List<String> l);
}
class C<@Foo(const []) T> {}
typedef void F<@Foo(const []) T>();
void f<@Foo(const []) T>() {}
class D {
void m<@Foo(const []) T>() {}
}
main() {}