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