08bcc159d9
2002-03-15 Eric Blake <ebb9@email.byu.edu> For PR java/5902: * libjava.compile/PR5902.java: Does not need to execute. For PR java/5913: * libjava.compile/PR5913.java: Ditto. From-SVN: r50829
7 lines
171 B
Java
7 lines
171 B
Java
class PR5913
|
|
{
|
|
boolean test1 = ("" + 1) instanceof String;
|
|
// This also tests literal parsing, as mentioned in PR 5902.
|
|
boolean test2 = "" + 0x1instanceof String;
|
|
}
|