summaryrefslogtreecommitdiffstats
path: root/tests/harness/DirChangesTest.java
blob: a305cd22070cf08ec79c030f36f39aa46e343c0b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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;
    }
    
}