mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
12 lines
137 B
Kotlin
12 lines
137 B
Kotlin
package testuser
|
|
|
|
public class OuterNotGeneric {
|
|
|
|
public inner class InnerGeneric<S> {
|
|
|
|
fun identity(s: S): S { return s }
|
|
|
|
}
|
|
|
|
}
|