Code cleanup

Original commit: e9e42b0251
This commit is contained in:
Alexey Tsvetkov
2015-10-19 19:14:40 +03:00
parent b4033f2bcd
commit 406783b53d
3 changed files with 4 additions and 4 deletions
@@ -1,6 +1,6 @@
Cleaning output files: Cleaning output files:
out/production/module/META-INF/module.kotlin_module out/production/module/META-INF/module.kotlin_module
out/production/module/inline/InlineKt.class out/production/module/test/InlineKt.class
End of files End of files
Compiling files: Compiling files:
End of files End of files
@@ -12,4 +12,4 @@ Compiling files:
src/usage.kt src/usage.kt
End of files End of files
COMPILATION FAILED COMPILATION FAILED
Unresolved reference: inline Unresolved reference: test
@@ -1,4 +1,4 @@
package inline package test
inline fun f(body: () -> Unit) { inline fun f(body: () -> Unit) {
println("i'm inline function") println("i'm inline function")
@@ -1,7 +1,7 @@
package usage package usage
fun main(args: Array<String>) { fun main(args: Array<String>) {
inline.f { test.f {
println("to be inlined") println("to be inlined")
} }
} }