blob: e3a244612c0805dbdfd3211c223510e0c21cca7b [file] [log] [blame]
// @dart = 2.9
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() {}