Files
kotlin-fork/idea/jvm-debugger/jvm-debugger-test/testData/evaluation/singleBreakpoint/synchronizedBlock.kt.fragment
T
2019-10-08 19:13:55 +09:00

10 lines
105 B
Plaintext
Vendored

class Foo {
@Synchronized
fun foo(): Int {
return 5
}
}
Foo().foo()
// RESULT: 5: I