mirror of
https://github.com/github/codeql.git
synced 2025-12-21 19:26:31 +01:00
13 lines
130 B
Kotlin
13 lines
130 B
Kotlin
interface NoForwards {
|
|
|
|
fun f() = 4
|
|
|
|
fun g(x: Int) = x
|
|
|
|
val x : Int
|
|
get() = 6
|
|
|
|
}
|
|
|
|
class RealNoForwards : NoForwards { }
|