Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0801cc12da5af28d8009eb66d070f37079ab755d
/
.
/
idea
/
testData
/
intentions
/
importMember
/
ObjectMethod.kt
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>
()
}