mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
23 lines
284 B
Kotlin
23 lines
284 B
Kotlin
package testuser
|
|
|
|
public class OuterGeneric<T> {
|
|
|
|
public inner class InnerNotGeneric {
|
|
|
|
fun identity(t: T): T { return t }
|
|
|
|
}
|
|
|
|
public inner class InnerGeneric<S> {
|
|
|
|
constructor() { }
|
|
|
|
constructor(s: S) { }
|
|
|
|
fun returnsecond(t: T, s: S): S { return s; }
|
|
|
|
}
|
|
|
|
}
|
|
|