blob: 6886acd7a9dbf71d0ae11cacc6df30f715b4543f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import org.aspectj.testing.*;
public class SmallComment {
public static void main(String[] args) {
new SmallComment().realMain(args);
}
public void realMain(String[] args) {
/**/
Tester.check(true, "Compiled");
}
}
|