From d1d7c1904f5ad12c16b1a891d81a0017af3a1e39 Mon Sep 17 00:00:00 2001 From: Vasily Levchenko Date: Tue, 18 Sep 2018 14:14:49 +0300 Subject: [PATCH] [kotlin compiler][update] 1.3.0-rc-37 (#2082) --- .../tests/codegen/controlflow/for_loops_coroutines.kt | 2 +- gradle.properties | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/backend.native/tests/codegen/controlflow/for_loops_coroutines.kt b/backend.native/tests/codegen/controlflow/for_loops_coroutines.kt index 8b7bc4515a8..d05faedee5b 100644 --- a/backend.native/tests/codegen/controlflow/for_loops_coroutines.kt +++ b/backend.native/tests/codegen/controlflow/for_loops_coroutines.kt @@ -10,7 +10,7 @@ import kotlin.test.* import kotlin.coroutines.* @Test fun runTest() { - val sq = buildSequence { + val sq = sequence { for (i in 0..6 step 2) { print("before: $i ") yield(i) diff --git a/gradle.properties b/gradle.properties index 0b6112225a8..a6ea4650a6e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -19,8 +19,8 @@ buildKotlinVersion=1.3.0-rc-6 buildKotlinCompilerRepo=http://dl.bintray.com/kotlin/kotlin-dev remoteRoot=konan_tests testDataVersion=1226829:id -kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_130_CompilerAllPlugins),number:1.3.0-rc-27,tag:kotlin-native,pinned:true/artifacts/content/maven -kotlinVersion=1.3.0-rc-27 +kotlinCompilerRepo=https://teamcity.jetbrains.com/guestAuth/app/rest/builds/buildType:(id:Kotlin_130_CompilerAllPlugins),number:1.3.0-rc-37,tag:kotlin-native,pinned:true/artifacts/content/maven +kotlinVersion=1.3.0-rc-37 testKotlinVersion=1.3.0-rc-6 konanVersion=0.9.2 org.gradle.jvmargs='-Dfile.encoding=UTF-8'