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