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