Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
e1e07d20949869a38f2fc0b6ceeea1235721f07f
/
.
/
compiler
/
testData
/
diagnostics
/
testsWithStdLib
/
duplicateJvmSignature
/
jvmStaticInObject.kt
blob: 1515072ecccf19e3cd36088b8d4cf3937ecc2d3f [
file
]
// !DIAGNOSTICS: -UNUSED_PARAMETER
open
class
Base
{
fun
`foo$default`
(
i
:
Int
,
mask
:
Int
,
mh
:
Any
)
{}
}
object
Derived
:
Base
()
{
<!
ACCIDENTAL_OVERRIDE
!>
@JvmStatic
fun foo
(
i
:
Int
=
0
)<!>
{}
}