blob: 4389ef900e9539af581fcacca19788f0d71e58fb [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() {}