blob: 9aee2fbe66360189a406d4072f7d39cdb6a1b660 [file]
// RUN_PIPELINE_TILL: FRONTEND
// DIAGNOSTICS: -UNUSED_PARAMETER
class A {
private fun foo(i: Int) {}
private fun foo(s: String) {}
}
fun test(a: A) {
a.<!INVISIBLE_MEMBER!>foo<!>(3)
a.<!NONE_APPLICABLE!>foo<!>()
}
/* GENERATED_FIR_TAGS: classDeclaration, functionDeclaration, integerLiteral */