blob: aa95e40a9c14c04be81c79c580dcb7902ae63387 [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();
}
@Buggy("doesn't work")
private /*[*/Cell2/*]*/() { }
}