Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e5523c196e17d8fdbb5635aa785d6c182ed3f821
/
.
/
compiler
/
testData
/
ir
/
irText
/
classes
/
initVal.kt
blob: 845e4f872c9357f833be333b2c1aa8fce8f604ba [
file
] [
log
] [
blame
]
// FIR_IDENTICAL
class
TestInitValFromParameter
(
val x
:
Int
)
class
TestInitValInClass
{
val x
=
0
}
class
TestInitValInInitBlock
{
val x
:
Int
init
{
x
=
0
}
}