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