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