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