blob: ebba24edeb0df8d711b6fe5dfa26087e7bb1a417 [file] [log] [blame]
// 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>()
}