5a3c6def8f
#KT-34270 Fixed
10 lines
180 B
Kotlin
Vendored
10 lines
180 B
Kotlin
Vendored
class Foo(size: Int)
|
|
|
|
class Test(height: Int, width: Int) {
|
|
private val size: Int = height * width
|
|
private val <caret>data: Foo
|
|
|
|
init {
|
|
data = Foo(size)
|
|
}
|
|
} |