summaryrefslogtreecommitdiff
path: root/src/test/java/demobug/InnerTest.oj
blob: e3f5ed3968b45eb3f19d1f899eda4a0f1d647b0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
/*
 * InterTest.java
 *
 * May 4, 1999 by Michiaki Tatsubori
 */
package demobug;

import java.lang.System;

public class InnerTest {
    public JJCalls jj;

    public static void main(String[] argv) {
        /*
        System.out.println( JJCalls.gen );
        JJCalls dummy = new JJCalls();
        JJCalls[] test = new JJCalls[53];
        */
        JJCalls hoge = InnerTest.JJCalls.next;

        //InnerTest u = new InnerTest();
        //hoge = u.JJCalls.next;
    }

    static final class JJCalls {
        static int gen = 0;
        static JJCalls next;
    }
}