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