1 // inner class regression test.
11 inner_1 xxxx
; // Refers to inner_1
12 bar
.foo
.another xyz
; // Refers to non inner another
13 bar
.foo
.other
.foo X
; // OK to declare, inner class foo
14 bar
.foo
.inner_1
.t bar
; // Inner class t
15 inner_1
.t foo
; // Inner class t
16 t foobar
; // Inner class t
17 other
.foo zag
; // Valid for declaration.
29 System
.out
.println ("This is `inner_1.t'");