blob: 26018a3e30498553cc440cec9ea0b85b3b4aaf54 [file] [log] [blame]
package p;
public class Annotation2_in {
public void foo() {
Cell2 c= Cell2.createCell2();
}
}
@interface Buggy {
String value();
}
class Cell2 {
public static Cell2 createCell2() {
return new Cell2();
}
private @Buggy("doesn't work") /*[*/Cell2/*]*/() { }
}