Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
defaultArguments
/
kt5232.kt
blob: 9c628c18f2b0fd2ffd9b590e25b01f500703697e [
file
]
// FIR_IDENTICAL
interface
A
{
fun visit
(
a
:
Int
,
b
:
String
=
""
)
:
String
=
b
+
a
}
class
B
:
A
{
override
fun visit
(
a
:
Int
,
b
:
String
)
:
String
=
b
+
a
}
class
C
:
A
{
<!
NOTHING_TO_OVERRIDE
!>
override
<!>
fun visit
(
a
:
Int
)
:
String
=
""
+
a
}