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