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