Drop inlineOptions and fix forgotten usages

This commit is contained in:
Denis Zharkov
2015-09-23 12:07:07 +03:00
parent 67486b867b
commit 098f5462eb
58 changed files with 13 additions and 150 deletions
@@ -1,6 +1,5 @@
//NO_CHECK_LAMBDA_INLINING
import test.*
import kotlin.InlineOption.*
fun test1(param: String): String {
var result = "fail1"
@@ -1,6 +1,5 @@
package test
import kotlin.InlineOption.*
inline fun <R> call(crossinline f: () -> R) : R {
return {f()} ()
@@ -1,6 +1,5 @@
//NO_CHECK_LAMBDA_INLINING
import test.*
import kotlin.InlineOption.*
fun testSameCaptured() : String {
var result = 0;
@@ -1,6 +1,5 @@
package test
import kotlin.InlineOption.*
inline fun <R> doWork(crossinline job: ()-> R) : R {
val k = 10;