Change Signature: Propagate parameters to chosen callers
#KT-7902 Fixed
This commit is contained in:
Vendored
+21
@@ -0,0 +1,21 @@
|
||||
class J extends A {
|
||||
public J() {
|
||||
|
||||
}
|
||||
|
||||
public J(boolean b) {
|
||||
super();
|
||||
}
|
||||
}
|
||||
|
||||
class Test {
|
||||
void test() {
|
||||
new A();
|
||||
new A(true);
|
||||
new B();
|
||||
new B(true);
|
||||
new C(true);
|
||||
new J();
|
||||
new J(true);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user