blob: 4da784fa15b7c15ffba59e9aa419dbd4766a001a [file] [log] [blame]
package p;
public class Annotation2_in {
public void foo() {
Cell2 c= new Cell2();
}
}
@interface Buggy {
String value();
}
class Cell2 {
@Buggy("doesn't work") public /*[*/Cell2/*]*/() { }
}