929d06c86f
#KT-8426 Fixed
10 lines
165 B
Plaintext
Vendored
10 lines
165 B
Plaintext
Vendored
// "Create property 'foo' as constructor parameter" "true"
|
|
|
|
class A {
|
|
class B(val foo: Int) {
|
|
fun test(): Int {
|
|
return foo
|
|
}
|
|
}
|
|
}
|