Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6f1b95d296c5592d3a3e71cc638994fa2ba4e4f7
/
.
/
compiler
/
testData
/
codegen
/
box
/
traits
/
sameNameMethodFromInterface.kt
blob: e9acb4b97e5a1bf2924dea56d42275ea09301649 [
file
]
interface
A
<
T
>
{
fun foo
(
t
:
T
):
T
=
t
}
class
B
:
A
<
String
>
{
private
fun foo
()
{}
}
fun box
():
String
=
B
().
foo
(
"OK"
)