Bruce Eckel 88dbdbbbcb update
2015-05-18 23:05:30 -07:00

22 lines
401 B
Java

//: annotations/simplest/SimpleTest.java
// Test the "Simple" annotation
package annotations.simplest;
@Simple
public class SimpleTest {
@Simple
int i;
@Simple
public SimpleTest() {}
@Simple
public void foo() {
System.out.println("SimpleTest.foo()");
}
@Simple
public static void main(String[] args) {
@Simple
SimpleTest st = new SimpleTest();
st.foo();
}
} ///:~