KT-7271 Accessing an extension property of Char.Companion leads to ClassNotFoundException in runtime

#KT-7271 Fixed
This commit is contained in:
Nikolay Krasko
2015-04-04 00:12:59 +03:00
parent a77aae8789
commit 2946c1d6a8
6 changed files with 13 additions and 0 deletions
@@ -25,6 +25,7 @@ fun testCompanionObjectAccess() {
val l = Long
val sh = Short
val b = Byte
val ch = Char
val st = String
val en = Enum
}
@@ -36,6 +37,7 @@ fun testInCall() {
test(Long)
test(Short)
test(Byte)
test(Char)
test(String)
test(Enum)
}