Remove crossinline restriction from synchronized in js and common

#KT-20596 Fixed
This commit is contained in:
Ilya Gorbunov
2017-09-28 18:08:01 +03:00
parent 409f361a7c
commit 0898897057
2 changed files with 2 additions and 2 deletions
@@ -95,7 +95,7 @@ expect fun Float.isFinite(): Boolean
@Target(PROPERTY, FIELD)
expect annotation class Volatile
inline expect fun <R> synchronized(lock: Any, crossinline block: () -> R): R
public expect inline fun <R> synchronized(lock: Any, block: () -> R): R