diff options
Diffstat (limited to 'tests/new/SmallComment.java')
-rw-r--r-- | tests/new/SmallComment.java | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/new/SmallComment.java b/tests/new/SmallComment.java new file mode 100644 index 000000000..6886acd7a --- /dev/null +++ b/tests/new/SmallComment.java @@ -0,0 +1,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"); + } +} + |