Files
codeql/java/ql/test/kotlin/library-tests/arrays/primitiveArrays.kt
2022-05-10 19:51:03 +01: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>) { }
}