Files
kotlin-fork/compiler/testData/compileKotlinAgainstCustomBinaries/inlineFunWithoutDebugInfo/sourceInline.kt
T
Alexander Udalov dae414854d Reduce boilerplate in CompileKotlinAgainstCustomBinariesTest
Check against output.txt in compileKotlin; adapt test data of some tests
2017-05-26 19:38:53 +03:00

9 lines
96 B
Kotlin
Vendored

package test
public class A {
inline public fun test(s: () -> Unit) {
s()
}
}