Files
codeql/java/ql/test/kotlin/query-tests/OneStatementPerLine/Test.kt
2022-11-16 15:10:38 +01:00

8 lines
109 B
Kotlin

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