OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [anon3.java] - Blame information for rev 765

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 765 jeremybenn
// Class anon3
2
// Generated on Wed Dec 29 10:07:09 PST 1999
3
//
4
 
5
 
6
class anon3 {
7
 
8
  itf bar () {
9
    return new itf () {
10
      int count = 5;
11
      public void setCount (int j) { count = 3; }
12
      public int getCount () { return count; }
13
    } ;
14
  }
15
 
16
  void test () {
17
   itf x = bar ();
18
   System.out.println (x.getCount ());
19
  }
20
 
21
  public static void main (String[] arg)
22
  {
23
    System.out.println ("Testing class `anon3'...");
24
    new anon3 ().test ();
25
  }
26
}
27
 
28
interface itf { void setCount (int j); int getCount(); int count = 0; }

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.