Fix typo in test name

This commit is contained in:
Alexey Tsvetkov
2017-08-22 22:08:37 +03:00
parent 141c889a84
commit cf72b14b34
7 changed files with 18 additions and 18 deletions
@@ -0,0 +1,11 @@
================ Step #1 =================
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
Exit code: OK
------------------------------------------
@@ -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 {}
}