blob: 26f3f04c5eec84282ed75594d710e0c23e96d988 [file] [log] [blame]
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>() {}