Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
4f8dad3e4ba00e23b4182ef4c50194b20bd43c8f
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
OverrideFunctionWithParamDefaultValue.kt
blob: 07fd8cfc4f7ed07dd84aef21aa69b998706dfc3f [
file
]
// FIR_IDENTICAL
abstract
class
B
()
{
abstract
fun foo2
(
arg
:
Int
=
239
)
:
Int
}
class
C
()
:
B
()
{
override
fun foo2
(
arg
:
Int
)
:
Int
=
arg
}
fun invokeIt
()
{
C
().
foo2
()
}