Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
161333d3e7d13dd98386fe346a71a07eadfe4756
/
.
/
compiler
/
testData
/
codegen
/
box
/
function
/
defaults10.kt
blob: 9a1283e56c94df778212c2da489e880d6e27bb83 [
file
]
// WITH_STDLIB
import
kotlin
.
test
.*
enum
class
A
(
one
:
Int
,
val two
:
Int
=
one
)
{
FOO
(
42
)
}
fun box
():
String
{
assertEquals
(
42
,
(
A
.
FOO
.
two
))
return
"OK"
}