blob: cbe0240b7c3775c113b1217b06756e365f57d374 [file] [log] [blame]
package p;
public class Annotation1_in {
public void foo() {
Cell1 c= Cell1.createCell1();
}
}
@interface Preliminary { }
class Cell1 {
public static Cell1 createCell1() {
return new Cell1();
}
@Preliminary
private /*[*/Cell1/*]*/() { }
}