Files
2023-11-21 15:28:12 +00:00

8 lines
109 B
Kotlin

class Foo {
fun foo(): Foo { return this }
fun bar(x: Foo?): Foo? {
return x?.foo()
}
}