blob: 600247f2d6a1f5f39ed5d192068dd1750d9aef76 [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();
}
}