blob: 2894307ec00c258084c39736fdbfe92b3a154f97 [file] [log] [blame]
const annotation = null;
class Annotation {
final String message;
const Annotation(this.message);
}
class A<E> {}
class C {
m() => new A<@annotation @Annotation("test") C>();
}
main() {}