b7eded6e48
Intention to change final class constructor visibility to 'protected' was erroneous. This commit removes it.
11 lines
201 B
Kotlin
Vendored
11 lines
201 B
Kotlin
Vendored
// "Safe delete constructor" "false"
|
|
// ACTION: Convert to primary constructor
|
|
// ACTION: Make internal
|
|
// ACTION: Make private
|
|
|
|
class Ctor {
|
|
<caret>constructor(p: Int)
|
|
|
|
fun justCompare() {}
|
|
}
|