blob: 14b7fdbabd94df2b39e1fd60dc73973b2953a90e [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();
}
private @Authorship(
name="Rene Descartes",
purpose="None whatsoever") /*[*/Cell3/*]*/() { }
}