0bc371d376
* testsuite/libjava.compile/PR14853.java: New file. * testsuite/libjava.compile/PR14853.xfail: New file. From-SVN: r91777
18 lines
284 B
Java
18 lines
284 B
Java
class tt
|
|
{
|
|
static final tt tt1 = new tt();
|
|
tt()
|
|
{
|
|
}
|
|
}
|
|
|
|
public class PR14853
|
|
{
|
|
public static void main (String[] args)
|
|
{
|
|
// This is an invalid assignment. gcj would get confused in
|
|
// definite assignment when compiling to object code.
|
|
tt.tt1 = new tt();
|
|
}
|
|
}
|