Test: add jvm backend test for named class object

This commit is contained in:
Pavel V. Talanov
2015-01-20 17:33:21 +03:00
parent 72f94963ab
commit 894c3bceac
3 changed files with 36 additions and 0 deletions
@@ -0,0 +1,12 @@
class C() {
class object Foo {
fun create() = 3
}
}
fun box(): String {
val c1 = C.Foo.create()
val c2 = C.create()
return if (c1 == 3 && c2 == 3) "OK" else "fail"
}