fix for KT-1515 wrong loading of annotations

This commit is contained in:
Alex Tkachman
2012-03-13 12:28:35 +02:00
parent 6b26d1ca31
commit c870eccc4f
8 changed files with 49 additions and 13 deletions
@@ -0,0 +1,4 @@
fun box(): String {
val c = javaClass<Runnable>()
return if(c.getName().sure() == "java.lang.Runnable") "OK" else "fail"
}