30d697109c
#KT-6970 Fixed
22 lines
319 B
Plaintext
Vendored
22 lines
319 B
Plaintext
Vendored
// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction
|
|
// WITH_RUNTIME
|
|
class Foo {
|
|
val x = 1
|
|
val y: Int
|
|
val z: Int get() = 3
|
|
val u: Int by lazy { 4 }
|
|
|
|
<caret>constructor()
|
|
|
|
init {
|
|
y = 2
|
|
}
|
|
|
|
fun foo() {
|
|
|
|
}
|
|
|
|
fun bar() {
|
|
|
|
}
|
|
} |