mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-17 07:20:53 +07:00
22 lines
326 B
Java
22 lines
326 B
Java
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();
|
|
|
|
|
|
}
|
|
} |