Return platform independent path in IncrementalCacheImpl::getClassFilePath

Fix ExperimentalIncrementalJpsTestGenerated.PureKotlin.testFunctionBecameInline on Windows.
This commit is contained in:
Zalim Bashorov
2015-11-18 14:15:12 +03:00
parent b6a5d30469
commit 93eb09a654
7 changed files with 31 additions and 1 deletions
@@ -0,0 +1,7 @@
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/UsageKt.class
End of files
Compiling files:
src/usage.kt
End of files
@@ -0,0 +1,5 @@
class A {
inline fun foo(f: () -> Unit) {
f()
}
}
@@ -0,0 +1,2 @@
fun usage() {
}
@@ -0,0 +1,3 @@
fun usage() {
A().foo {}
}