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

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [indirect.java] - Rev 775

Go to most recent revision | Compare with Previous | Blame | View Log

// Class indirect
// Generated on Tue Nov 16 15:53:14 UTC 1999
// Several indirection to enclosing class
 
class indirect {
 
  private int foo;
 
  class indirect_inner {
    class other {
      class inner {
        void test () {
          int x = foo;
          System.out.println ("x="+foo);
	  foo = 671;
        }
      }
    }
 
  }
  void foo ()
  {
    foo = 670; 
    indirect_inner inn = this.new indirect_inner ();
    this.new indirect_inner().new other().new inner ().test ();
    System.out.println ("foo="+foo);
  }  
  public static void main (String[] arg)
  {
    System.out.println ("Testing class `indirect'...");
    new indirect().foo ();
  }
}
 

Go to most recent revision | Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

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