Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
534b00eff856e0e4dcaf105df9a043d9b1263ff7
/
.
/
compiler
/
testData
/
codegen
/
box
/
function
/
defaults6.kt
blob: e738860c0392ce25ef8f1a47f140c8bc0037de85 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
open
class
Foo
(
val x
:
Int
=
42
)
class
Bar
:
Foo
()
fun box
():
String
{
assertEquals
(
42
,
Bar
().
x
)
return
"OK"
}