mirror of
https://github.com/github/codeql.git
synced 2025-12-23 20:26:32 +01:00
Otherwise we'll mistake `@NotNull Integer` for `int` and similar, causing a mismatch vs. Java signatures.
5 lines
52 B
Kotlin
5 lines
52 B
Kotlin
fun f(t: Test): Int {
|
|
val x = t.f(5)
|
|
return x
|
|
}
|