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