For PR java/12915:

* libjava.lang/PR12915.java: New file.
	* libjava.lang/PR12915.out: New file.

From-SVN: r73460
This commit is contained in:
Tom Tromey 2003-11-11 20:11:43 +00:00 committed by Tom Tromey
parent 285b36d6a5
commit ec629ef5a4
3 changed files with 11 additions and 0 deletions

View file

@ -0,0 +1,6 @@
public class PR12915 {
public static void main(String[] args)
{
System.out.println(((String) null) + "");
}
}