Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
codegen
/
box
/
compileKotlinAgainstKotlin
/
internalWithDefaultArgs.kt
blob: 7d71d565b1965676e7518482f90aea3ddf9e9940 [
file
]
// MODULE: lib
// FILE: A.kt
package
a
class
Box
()
{
internal
fun result
(
value
:
String
=
"OK"
):
String
=
value
}
// MODULE: main()(lib)
// FILE: B.kt
fun box
():
String
{
return
a
.
Box
().
result
()
}