9 lines
124 B
Kotlin
9 lines
124 B
Kotlin
// "Create parameter 'foo'" "true"
|
|
|
|
class A<T> {
|
|
fun test(n: Int,
|
|
foo: T) {
|
|
val t: T = foo
|
|
}
|
|
}
|