Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
0c8f3faeecbeecb0d1430ef2b86dd192a029711c
/
.
/
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"
)