check argument types through complete phase

with right data flow info
This commit is contained in:
Svetlana Isakova
2013-06-21 13:54:42 +04:00
parent 4f2df78066
commit 2eadd5202d
4 changed files with 27 additions and 0 deletions
@@ -0,0 +1,7 @@
package aaa
fun bar(<!UNUSED_PARAMETER!>a<!>: Int, <!UNUSED_PARAMETER!>b<!>: Int) {}
fun foo(a: Int?) {
bar(a!!, a)
}