mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
14 lines
229 B
Kotlin
14 lines
229 B
Kotlin
package main
|
|
|
|
import kotlin.collections.MutableList
|
|
|
|
fun test(
|
|
a: Int,
|
|
b: String,
|
|
c: MutableList<String>,
|
|
d: MutableList<out String>,
|
|
e: DefinedHere<String>,
|
|
f: DefinedOtherFile<String>
|
|
) { }
|
|
|
|
class DefinedHere<T> { } |