870fc9284b
#KT-4945 Fixed
10 lines
247 B
Plaintext
Vendored
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>()
|
|
} |