mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
change signature: propagate params/exceptions to implicit constructors
This commit is contained in:
+10
@@ -0,0 +1,10 @@
|
||||
public class P {
|
||||
public P(Class clazz) {
|
||||
}
|
||||
}
|
||||
|
||||
class PP extends P {
|
||||
PP(Class clazz) {
|
||||
super(clazz);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user