7 lines
79 B
Kotlin
Vendored
7 lines
79 B
Kotlin
Vendored
class C {
|
|
|
|
fun create() = C()
|
|
}
|
|
|
|
fun foo() = C()
|
|
fun bar() = foo().create() |