1 /* 2 * Copyright 2016-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license. 3 */ 4 package kotlinx.coroutines 5 6 import org.junit.* 7 8 class RunBlockingJvmTest : TestBase() { 9 @Test testContractnull10 fun testContract() { 11 val rb: Int 12 runBlocking { 13 rb = 42 14 } 15 rb.hashCode() // unused 16 } 17 } 18 19