Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
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
=
""
)
}