Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
67ac90ce0868ee0c9cd08d72460f16efecded549
/
.
/
compiler
/
testData
/
codegen
/
boxInline
/
private
/
kt8095.kt
blob: 3cd6ed104740b428a673d41857cce70da0e453c5 [
file
]
// FILE: 1.kt
package
test
class
C
(
private
val a
:
String
)
{
internal
inline
fun g
(
x
:
(
s
:
String
)
->
Unit
)
{
x
(
a
)
}
}
// FILE: 2.kt
import
test
.*
fun box
():
String
{
var
r
=
"fail"
C
(
"OK"
).
g
{
r
=
it
}
return
r
}