Change Signature: Run tests with Kotlin stdlib

This commit is contained in:
Alexey Sedunov
2015-10-29 16:15:06 +03:00
parent 4f09bdfe70
commit 6a72b51677
42 changed files with 9 additions and 82 deletions
@@ -4,8 +4,6 @@ fun <caret>foo(x: X, s: String, k: Int): Boolean {
class X(val k: Int)
fun <T, R> with(receiver: T, f: T.() -> R): R = receiver.f()
fun test() {
foo(X(0), "1", 2)
with(X(0)) {