Code Insight: Format generated declarations
#KT-11176 Fixed (cherry picked from commit 3641ad6)
This commit is contained in:
-1
@@ -3,7 +3,6 @@ open class Base()
|
||||
|
||||
class Creation {
|
||||
constructor(f: Int)
|
||||
|
||||
constructor()
|
||||
}
|
||||
val v = Creation()
|
||||
Vendored
-1
@@ -5,7 +5,6 @@ open class Base(val f: Int)
|
||||
|
||||
class Creation: Base {
|
||||
constructor(f: Int): super(f)
|
||||
|
||||
constructor() : super(<caret>)
|
||||
}
|
||||
val v = Creation()
|
||||
-1
@@ -3,7 +3,6 @@
|
||||
|
||||
class CtorSecondary() {
|
||||
constructor(p: Int) : this()
|
||||
|
||||
constructor<caret>(i: Int, i1: Int)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user