File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed
integration-testing/mpp-sample Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 55buildscript {
66 repositories {
77 mavenLocal()
8+ mavenCentral()
89 }
910
1011 dependencies {
11- classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0-SNAPSHOT " )
12+ classpath(" org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.22.0" ) //
1213 }
1314}
1415
Original file line number Diff line number Diff line change 11kotlin_version =1.9.0
22atomicfu_version =0.22.0-SNAPSHOT
3-
4- kotlinx.atomicfu.enableJvmIrTransformation =true
3+ kotlinx.atomicfu.enableJvmIrTransformation =true
4+ kotlin.native.home =~/Downloads/kotlin-native-macos-x86_64-1.9.10/
Original file line number Diff line number Diff line change 1+ /*
2+ * Copyright 2016-2023 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3+ */
4+
15import kotlin.test.*
26
37class IntArithmeticTest {
@@ -6,6 +10,6 @@ class IntArithmeticTest {
610 fun testInt () {
711 val a = IntArithmetic ()
812 a.doWork(1234 )
9- assertEquals(1236 , a.x)
13+ assertEquals(1234 , a.x)
1014 }
1115}
You can’t perform that action at this time.
0 commit comments