blob: 21aa941895df7435b167cc62c268704e2d997fe7 [file] [log] [blame]
// "Make 'a' not abstract" "false"
import java.io.*;
abstract class a {
void f() {
new <caret>a();
}
abstract void f2();
}