Last change
on this file was 2, checked in by bird, 22 years ago |
Initial revision
|
-
Property cvs2svn:cvs-rev
set to
1.1
-
Property svn:eol-style
set to
native
-
Property svn:executable
set to
*
|
File size:
407 bytes
|
Line | |
---|
1 | // Class final_inner
|
---|
2 | // Generated on Tue Jan 18 13:35:19 PST 2000
|
---|
3 | //
|
---|
4 |
|
---|
5 | class final_inner {
|
---|
6 |
|
---|
7 | void foo (final String s, final int i) {
|
---|
8 | class bar {
|
---|
9 | void printI () { System.out.println (s+i); }
|
---|
10 | }
|
---|
11 | new bar ().printI ();
|
---|
12 | }
|
---|
13 |
|
---|
14 | public static void main (String[] arg)
|
---|
15 | {
|
---|
16 | System.out.println ("Testing class `final_inner'...");
|
---|
17 | new final_inner ().foo ("The Number ", 666);
|
---|
18 | }
|
---|
19 | }
|
---|
Note:
See
TracBrowser
for help on using the repository browser.