Files
kotlin-fork/idea/testData/intentions/importMember/ObjectMethod.kt
T
2015-11-10 17:23:10 +03:00

9 lines
224 B
Kotlin
Vendored

// INTENTION_TEXT: "Add import for 'kotlin.properties.Delegates.notNull'"
// WITH_RUNTIME
import kotlin.properties.Delegates
class A {
val v1: Int by Delegates.notNull()
val v2: Char by Delegates.notNull<caret>()
}