Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
compileKotlinAgainstCustomBinaries
/
inlineFunWithoutDebugInfo
/
source.kt
blob: ea7c8fd526d4240572a2de7f61303d9283a45f89 [
file
]
package
test
public
class
B
{
public
fun test
():
String
{
var
p
=
"fail"
A
().
test
{
p
=
"OK"
}
return
p
}
}