• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 @file:JvmName("PrivateTopLevel")
2 
3 package bytecode_test
4 
5 import kotlinx.atomicfu.atomic
6 import kotlin.jvm.JvmName
7 
8 private val b = atomic(2)
9 
10 class PrivateTopLevelReflectionTest {
updatenull11     fun update() {
12         b.compareAndSet(0, 42)
13     }
14 }