mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 15:54:03 +00:00
8 lines
114 B
Plaintext
Vendored
8 lines
114 B
Plaintext
Vendored
// "Create parameter 'foo'" "true"
|
|
|
|
class A<T> {
|
|
fun test<T>(n: Int, foo: T) {
|
|
val t: T = foo
|
|
}
|
|
}
|