URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libjava/] [testsuite/] [libjava.lang/] [PR19870_2.java] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
// PR19870: Test synthetic accessor generation for private static methods // accessed across nested class boundaries. public class PR19870_2 { static class A { private static void foo( ) { System.out.println( "1"); } private static void bar( int x) { System.out.println( x); snafu( ); PR19870_2.snafu( ); } } static class B { private static void foo( ) { A.foo( ); } } private static void snafu( ) { System.out.println( "3"); } public static void main( String[] args) { A.foo( ); A.bar( 2); B.foo( ); } }
Go to most recent revision | Compare with Previous | Blame | View Log