re PR java/6204 (gcj generates invalid byte code)
* libjava.lang/PR6204.java, libjava.lang/PR6204.out: New test case. * libjava.lang/PR6085.java, libjava.lang/PR6085.out: Likewise. From-SVN: r52056
This commit is contained in:
committed by
Bryce McKinlay
parent
e285b25952
commit
973348ec02
@@ -0,0 +1,35 @@
|
||||
public class PR6085
|
||||
{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
F1 f1 = new F1();
|
||||
}
|
||||
|
||||
static class F1
|
||||
{
|
||||
F11 f11;
|
||||
F12 f12;
|
||||
|
||||
F1()
|
||||
{
|
||||
f12 = new F12();
|
||||
System.out.println (f12.i);
|
||||
System.out.println (f12.k);
|
||||
}
|
||||
|
||||
class F11
|
||||
{
|
||||
int k = 90;
|
||||
F11() {}
|
||||
}
|
||||
|
||||
class F12 extends F11
|
||||
{
|
||||
int i;
|
||||
F12()
|
||||
{
|
||||
i = 17;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user