re PR java/5913 (Core dump for String constant instanceof)
2002-03-12 Eric Blake <ebb9@email.byu.edu> * libjava.compile/PR5913.java: Expand test. From-SVN: r50638
This commit is contained in:
parent
76a43492ea
commit
36e5138325
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2002-03-12 Eric Blake <ebb9@email.byu.edu>
|
||||
|
||||
* libjava.compile/PR5913.java: Expand test.
|
||||
|
||||
2002-03-11 Eric Blake <ebb9@email.byu.edu>
|
||||
|
||||
* libjava.compile/PR5902.java: New file.
|
||||
|
|
|
@ -2,6 +2,9 @@ class PR5913
|
|||
{
|
||||
public static void main(String[] args)
|
||||
{
|
||||
System.exit((("" + 1) instanceof String) ? 0 : 1);
|
||||
boolean test1 = ("" + 1) instanceof String;
|
||||
// This also tests literal parsing, as mentioned in PR 5902.
|
||||
boolean test2 = "" + 0x1instanceof String;
|
||||
System.exit((test1 && test2) ? 0 : 1);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue