blob: 9704f8a3ebc386e9a49bfa496cd1f41c33a63be0 [file] [log] [blame]
public class Sup {
protected final String field;
public Sup() {
try {
field = (String)"text";
}
catch (RuntimeException e) {
throw new RuntimeException();
}
}
}
class ExtractSuperClass extends Sup {
public ExtractSuperClass() {
super();
}
}