Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
overload
/
onlyPrivateOverloadsDiagnostic.fir.kt
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
<!>()
}