Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
f467c970b2a4ee4ada1a66e72db80b847652c1d1
/
.
/
compiler
/
testData
/
loadJava
/
compiledJava
/
sam
/
SamSubinterfaceOfTwo.java
blob: 3d4c590d19a46e187fb0591e7a1f6f8a841c5bf6 [
file
] [
log
] [
blame
]
package
test
;
public
interface
SamSubinterfaceOfTwo
{
public
interface
Super1
{
CharSequence
f
();
}
public
interface
Super2
<
T
>
{
T f
();
}
public
interface
Sub
extends
Super1
,
Super2
<
String
>
{
}
}