Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6330def4271b547b5c7db5f9759e387de2908e94
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
override
/
DefaultParameterValueInOverride.fir.kt
blob: ddae0ca41b4814c820ac6c67b000c4d1714bbe50 [
file
] [
log
] [
blame
]
open
class
A
{
open fun foo
(
a
:
Int
)
{}
}
class
C
:
A
()
{
override
fun foo
(
a
:
Int
=
1
)
{
}
}
class
D
:
A
()
{
override
fun foo
(
a
:
Int
=
1
)
{
}
}