Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
eeaff786f0d0a86b7b827da0028bbafe287d3c04
/
.
/
compiler
/
testData
/
codegen
/
box
/
initializers
/
initializers3.kt
blob: b177d199ce57288bfbe01c6c709ab40f42bcbdec [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
class
Foo
(
val bar
:
Int
)
var
x
=
Foo
(
42
)
fun box
():
String
{
assertEquals
(
42
,
x
.
bar
)
return
"OK"
}