Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/constructor.kt
T
2020-12-16 19:52:30 +03:00

8 lines
80 B
Kotlin
Vendored

class C {
fun create() = C()
}
fun foo() = C()
fun bar() = foo().create()