73799e2c3c
It's done with similar constructions where possible trying to preserve intended behavior. Some usages are removed because they test exactly the feature that we are going to drop soon.
11 lines
153 B
Kotlin
Vendored
11 lines
153 B
Kotlin
Vendored
class TestClass {
|
|
public fun testMethod() {
|
|
}
|
|
}
|
|
|
|
fun testFun() {
|
|
val lambda = { -> TestClass() }
|
|
lambda().<caret>
|
|
}
|
|
|
|
// EXIST: testMethod |