870fc9284b
#KT-4945 Fixed
9 lines
224 B
Kotlin
Vendored
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>()
|
|
} |