Commit 0bc371d3 by Tom Tromey Committed by Tom Tromey

For PR java/14853:

	* testsuite/libjava.compile/PR14853.java: New file.
	* testsuite/libjava.compile/PR14853.xfail: New file.

From-SVN: r91777
parent a52c836b
2004-12-06 Tom Tromey <tromey@redhat.com>
For PR java/14853:
* testsuite/libjava.compile/PR14853.java: New file.
* testsuite/libjava.compile/PR14853.xfail: New file.
2004-12-03 Richard Sandiford <rsandifo@redhat.com> 2004-12-03 Richard Sandiford <rsandifo@redhat.com>
PR libgcj/7305 PR libgcj/7305
......
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();
}
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment