blob: 45f9fe5685484182e394b0c41188a2014bc76ff5 [file] [log] [blame]
package p;
public class Annotation3_in {
public void foo() {
Cell3 c= Cell3.createCell3();
}
}
@interface Authorship {
String name();
String purpose();
}
class Cell3 {
public static Cell3 createCell3() {
return new Cell3();
}
@Authorship(
name="Rene Descartes",
purpose="None whatsoever")
private /*[*/Cell3/*]*/() { }
}