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