Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
}