bug fixed: analyze arguments in FREE expression position

This commit is contained in:
Svetlana Isakova
2013-09-03 19:56:20 +04:00
parent b5e6568726
commit a53eae79b5
3 changed files with 29 additions and 3 deletions
@@ -0,0 +1,12 @@
class A {
class object {
}
}
fun use(vararg a: Any?) = a
fun test() {
use(use(A, null).toString())
}