Files
kotlin-fork/jps-plugin/testData/incremental/pureKotlin/inlinFunctionUsageAdded/foo.kt
T
Zalim Bashorov 93eb09a654 Return platform independent path in IncrementalCacheImpl::getClassFilePath
Fix ExperimentalIncrementalJpsTestGenerated.PureKotlin.testFunctionBecameInline on Windows.
2015-11-24 16:05:46 +03:00

6 lines
66 B
Kotlin
Vendored

class A {
inline fun foo(f: () -> Unit) {
f()
}
}