source: trunk/src/gcc/libjava/testsuite/libjava.lang/anfi.java@ 1392

Last change on this file since 1392 was 2, checked in by bird, 23 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: 797 bytes
Line 
1// Class anfi
2// Generated on Sat Jan 29 16:06:33 PST 2000
3// Anonymous with access to outer context locals
4
5class anfi {
6
7 itf foo (final String s, final int i) {
8 return new itf () {
9 String buff = s+" "+i;
10 public void setString (String s) { buff = s+" "+i; }
11 public String getString () { return buff; }
12 };
13 }
14
15 void test () {