Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/constructor.kt
T
2020-03-19 09:51:01 +03:00

7 lines
79 B
Kotlin
Vendored

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