Files
kotlin-fork/idea/testData/codeInsight/generate/secondaryConstructors/emptyExists.kt
T
2015-10-13 20:56:52 +03:00

24 lines
328 B
Kotlin
Vendored

// ACTION_CLASS: org.jetbrains.kotlin.idea.actions.generate.KotlinGenerateSecondaryConstructorAction
// WITH_RUNTIME
class Foo {<caret>
constructor() {
}
val x = 1
val y: Int
val z: Int get() = 3
val u: Int by lazy { 4 }
init {
y = 2
}
fun foo() {
}
fun bar() {
}
}