11 lines
155 B
Kotlin
11 lines
155 B
Kotlin
class TestClass {
|
|
public fun testMethod() {
|
|
}
|
|
}
|
|
|
|
fun testFun() {
|
|
val lambda = {() -> TestClass() }
|
|
lambda().<caret>
|
|
}
|
|
|
|
// EXIST: testMethod |