Trace usage in renderer replaced with usage of argument to parameter map

This commit is contained in:
Svetlana Isakova
2014-04-18 16:06:14 +04:00
parent 928b28e080
commit 4a8255a606
4 changed files with 31 additions and 54 deletions
@@ -0,0 +1,11 @@
// !DIAGNOSTICS_NUMBER: 1
// !DIAGNOSTICS: NONE_APPLICABLE
// !MESSAGE_TYPE: HTML
fun foo(i: Int, s: String, b: Boolean) {}
fun foo(b: Boolean, s: String) {}
fun foo(i: Int) {}
fun test() {
foo(1, "")
}