Files
2023-11-17 14:07:13 +00:00

8 lines
109 B
Kotlin

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