Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
847a2ced07911ac5a943ed41390d054d0e81aa1f
/
.
/
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"
}