Merged gcj-eclipse branch to trunk.

From-SVN: r120621
This commit is contained in:
Tom Tromey 2007-01-09 19:58:05 +00:00
parent c648dedbde
commit 97b8365caf
17478 changed files with 606493 additions and 100744 deletions

View file

@ -4,6 +4,7 @@
// Class.isInstance() and Class.isAssignableFrom(), and isAssignableFrom()
// functionality in the event that an interface argument that is not
// implemented by any loaded class is given.
// Note that the desired output changed from 1.4 to 1.5.
class A
{
@ -46,14 +47,3 @@ public class pr179
System.out.println (C.class.isInstance (c));
}
}
/* Expected Output:
A initialized
false
B initialized
false
true
C initialized
false
true
*/