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