Use fully-qualified references to exceptions in kotlin-runtime

This commit is contained in:
Ilya Gorbunov
2016-09-23 18:13:20 +03:00
parent 7e2e2b9f19
commit 3baf2f8942
4 changed files with 7 additions and 7 deletions
@@ -19,7 +19,7 @@ package kotlin.jvm.internal
import kotlin.reflect.KDeclarationContainer
private fun notSupportedError(): Nothing {
throw UnsupportedOperationException("Not supported for local property reference.")
throw kotlin.UnsupportedOperationException("Not supported for local property reference.")
}
open class LocalVariableReference : PropertyReference0() {