KT-1113 proper typeinfo(javaClass)

This commit is contained in:
Alex Tkachman
2012-01-24 18:11:29 +02:00
parent ad9ee0eda8
commit 7359388725
3 changed files with 33 additions and 2 deletions
@@ -0,0 +1,7 @@
class A
fun box():String {
System.out?.println(typeinfo("foo" as String?))
System.out?.println(typeinfo("foo"))
return "OK"
}