aboutsummaryrefslogtreecommitdiffstats
path: root/tests/harness/DirChangesTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'tests/harness/DirChangesTest.java')
-rw-r--r--tests/harness/DirChangesTest.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/harness/DirChangesTest.java b/tests/harness/DirChangesTest.java
new file mode 100644
index 000000000..a305cd220
--- /dev/null
+++ b/tests/harness/DirChangesTest.java
@@ -0,0 +1,16 @@
+import org.aspectj.testing.Tester;
+
+public class DirChangesTest {
+ public static void main (String[] args) {
+ Tester.check(true, "ok");
+ }
+ static class Nested {
+ static int meaningOfLife = 42;
+ }
+ class Inner {
+ int meaningOfLife = 42;
+ }
+
+}
+
+