Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ed7ee67e4e1513f9b3ba9587b6d6e950e7a1da7f
/
.
/
compiler
/
testData
/
loadJava
/
compiledKotlin
/
class
/
InheritSubstitutedMethod.kt
blob: 517e8f1236dafc9647392337f24517a26677cd49 [
file
]
//ALLOW_AST_ACCESS
package
test
public
interface
A
<
T
>
{
fun bar
():
T
fun foo
():
T
=
bar
()
}
public
class
B
:
A
<
String
>
{
override
fun bar
()
=
""
}