Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
objectWithInitializers.kt
blob: 6f01631c00276c31fdbc85761ffd7e75271608f7 [
file
]
// FIR_IDENTICAL
abstract
class
Base
object
Test
:
Base
()
{
val x
=
1
val y
:
Int
init
{
y
=
x
}
}