Files
kotlin-fork/idea/testData/intentions/convertLambdaToReference/object.kt
T
2017-03-14 18:45:08 +03:00

7 lines
101 B
Kotlin
Vendored

// IS_APPLICABLE: true
object Object {
fun foo() = 42
}
val x = { o: Object -> o.foo()<caret> }