blob: a6f984ca79d32f43e615ebb622029635f9ed6c9f [file]
// DIAGNOSTICS: -UNUSED_PARAMETER
class A {
private fun foo(i: Int) {}
private fun foo(s: String) {}
}
fun test(a: A) {
a.<!INVISIBLE_REFERENCE!>foo<!>(3)
a.<!NONE_APPLICABLE!>foo<!>()
}