Files
kotlin/idea/testData/quickfix/wrapWithSafeLetCall/objectQualifier.kt
2016-08-01 12:24:38 +03:00

8 lines
152 B
Kotlin
Vendored

// "Wrap with '?.let { ... }' call" "true"
// WITH_RUNTIME
object Obj {
fun foo(x: Int) = x
}
val arg: Int? = null
val argFoo = Obj.foo(<caret>arg)