blob: 017bb5f40fea26ab90e3d9d4ab394ce0e9859178 [file] [log] [blame]
// !DIAGNOSTICS_NUMBER: 1
// !DIAGNOSTICS: NONE_APPLICABLE
// !MESSAGE_TYPE: HTML
fun foo(i: Int, s: String, b: Boolean) {}
fun foo(i: Int, s: Int) {}
fun foo(b: Boolean, s: String) {}
fun foo(i: Int) {}
fun test() {
foo(1, "")
}