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