Files
codeql/java/ql/test-kotlin1/library-tests/arrays/primitiveArrays.kt
2023-11-21 15:28:12 +00:00

8 lines
156 B
Kotlin

package test
class Test {
fun test(a: Array<Int>, b: Array<Int?>, c: IntArray, d: Array<Array<Int?>>, e: Array<Array<Int>>, f: Array<IntArray>) { }
}