allan.jacobs@Eng 1997-03-05
A non-abstract class cannot be changed to be declared abstract.
JCK test lang/BINC/binc001/binc00101/binc00101.html fails. There are
two source files binc00101.java and binc00101a.java . They need to be
compiled separately.
algol% cat binc00101.java
// Ident: @(#)binc00101.java 1.2 96/12/10
// Copyright 12/10/96 Sun Microsystems, Inc. All Rights Reserved
//package javasoft.sqe.tests.lang.binc001.binc00101;
import java.io.PrintStream;
public class binc00101 {
public static void main(String argv[])
{
System.exit(run(argv, System.out) + 95/*STATUS_TEMP*/);
}
public static int run(String argv[],PrintStream out) {
binc00101a ncli;
try {
ncli = new binc00101a ();
}
catch (InstantiationError e) {
out.println (e);
return 0/*STATUS_PASSED*/;
}
out.println ("failed");
return 2/*STATUS_FAILED*/;
}
}
class binc00101a {
int a = 5;
}
algol% cat binc00101a.java
// Ident: @(#)binc00101a.java 1.1 96/10/30
// Copyright 10/30/96 Sun Microsystems, Inc. All Rights Reserved
//package javasoft.sqe.tests.lang.binc001.binc00101;
abstract class binc00101a {
int a1 = 5;
}
algol% cat runme.ksh
#!/bin/ksh
which java
rm binc00101.class binc00101a.class
echo 'javac -J-Djava.compiler=none binc00101.java'
echo 'javac -J-Djava.compiler=none binc00101a.java'
echo 'java -Djava.compiler=none binc00101'
javac -J-Djava.compiler=none binc00101.java
javac -J-Djava.compiler=none binc00101a.java
java -Djava.compiler=none binc00101
echo 'status='$?
echo 'java -Djava.compiler=sunwjit binc00101'
java -Djava.compiler=sunwjit binc00101
echo 'status='$?
algol% java -version
java version "tcm:02/23/23-22:49"
skinner% runme.ksh
/usr/java/bin/java
javac -J-Djava.compiler=none binc00101.java
javac -J-Djava.compiler=none binc00101a.java
java -Djava.compiler=none binc00101
java.lang.InstantiationError: binc00101a
status=95
java -Djava.compiler=sunwjit binc00101
failed
status=97