Tests on migrating main thread and memory leaks with interop (#4494)
This commit is contained in:
committed by
Stanislav Erokhin
parent
4c9bbe54d4
commit
fc7cf48798
@@ -0,0 +1,16 @@
|
||||
/*
|
||||
* Copyright 2010-2020 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
|
||||
* that can be found in the LICENSE file.
|
||||
*/
|
||||
|
||||
class A {
|
||||
var i = 0
|
||||
}
|
||||
|
||||
private var globalA = A()
|
||||
|
||||
fun writeToA(i: Int) {
|
||||
globalA.i = i
|
||||
}
|
||||
|
||||
fun readFromA() = globalA.i
|
||||
Reference in New Issue
Block a user