Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
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
()
}