Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
5e49b472f81ed95098eec9749aa2ad0415fac731
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
namedArguments
/
namedArgumentsInOverloads.kt
blob: 739c254a03c593a249679a5bfd9355b293f85e5d [
file
]
// FIR_IDENTICAL
interface
A
{
fun foo
(
a1
:
Int
,
a2
:
Double
)
}
interface
B
{
fun foo
(
b1
:
Int
,
b2
:
String
)
}
interface
C
:
A
,
B
{}
fun test
(
d
:
C
)
{
d
.
foo
(
a1
=
1
,
a2
=
1.0
)
d
.
foo
(
b1
=
1
,
b2
=
""
)
}