stub.xfail: New file.
* libjava.lang/stub.xfail: New file. * libjava.lang/pr83.xfail: New file. * libjava.lang/err8.xfail: New file. * libjava.lang/err7.xfail: New file. * libjava.lang/Shazam.xfail: New file. * libjava.lang/err11.xfail: New file. * libjava.lang/instinit2.java: Renamed class to `instinit2'. * libjava.lang/anon3.out: Fixed typo. * libjava.lang/Class_1.java (main): Uncommented out previously failing code; now it works From-SVN: r38297
This commit is contained in:
parent
0254608834
commit
3a9e1959df
10 changed files with 27 additions and 10 deletions
|
@ -1,10 +1,10 @@
|
|||
// Class ii2
|
||||
// Class instinit2
|
||||
// Generated on Wed Feb 2 17:52:49 PST 2000
|
||||
// The instance initializer throws a checked exception. This is OK
|
||||
// since the constructors declares it in its `throws' clause -- at
|
||||
// least that's what the specs are saying.
|
||||
|
||||
class ii2 {
|
||||
class instinit2 {
|
||||
|
||||
String buffer = "Oink Oink!";
|
||||
|
||||
|
@ -14,16 +14,16 @@ class ii2 {
|
|||
throw new Exception ("It just oinked");
|
||||
}
|
||||
|
||||
ii2 () throws Exception
|
||||
instinit2 () throws Exception
|
||||
{
|
||||
System.out.println ("Ctor");
|
||||
}
|
||||
|
||||
public static void main (String[] arg)
|
||||
{
|
||||
System.out.println ("Testing class `ii2'...");
|
||||
System.out.println ("Testing class `instinit2'...");
|
||||
try {
|
||||
System.out.println (new ii2 ().buffer);
|
||||
System.out.println (new instinit2 ().buffer);
|
||||
} catch (Exception e) {
|
||||
System.out.println (e.toString());
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue