mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
8 lines
106 B
Plaintext
8 lines
106 B
Plaintext
// "Create parameter 'foo'" "true"
|
|
|
|
class A {
|
|
class B(foo: Int) {
|
|
val test: Int = foo
|
|
}
|
|
}
|