Addressed review comments + additional test

This commit is contained in:
upnotes
2018-08-10 15:05:01 +02:00
committed by Roman Shevchenko
parent 1af631be9d
commit 6f70918c3b
4 changed files with 13 additions and 4 deletions

View File

@@ -1,3 +1,4 @@
package pkg;
public final class PrivateEmptyConstructor {

View File

@@ -0,0 +1,8 @@
object TestSynchronizedUnprotected {
fun test() {
synchronized(this) {
println("Boom")
}
}
}