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

10 lines
247 B
Plaintext
Vendored

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