Safe Delete: Add test for primary constructor with usages in delegation calls
This commit is contained in:
@@ -0,0 +1,11 @@
|
||||
open class <caret>B() {
|
||||
constructor(a: Int): this() {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
open class A: B {
|
||||
constructor(a: Int): super() {
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user