re PR java/20418 (ICE if variable name is omitted in an initialiser and a qualified type for the variable is used)

* testsuite/libjava.compile/PR20418.java: New.
	* testsuite/libjava.compile/PR20418.xfail: New.

From-SVN: r113707
This commit is contained in:
David Daney 2006-05-11 17:52:42 +00:00 committed by David Daney
parent 5d342ef9c5
commit 498f0cf38a
3 changed files with 13 additions and 0 deletions

View File

@ -1,3 +1,8 @@
2006-05-11 David Daney <ddaney@avtrex.com>
* testsuite/libjava.compile/PR20418.java: New.
* testsuite/libjava.compile/PR20418.xfail: New.
2006-05-11 Andrew Haley <aph@redhat.com>
* gnu/gcj/runtime/natSharedLibLoader.cc (init): Remove debugging

View File

@ -0,0 +1,7 @@
public class PR20418
{
public static void main( String[] args)
{
java.io.File = new java.io.File( "junk");
}
}

View File

@ -0,0 +1 @@
shouldfail