Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ba045e44fbc13a4a8bcfa03689115fd0a25366a9
/
.
/
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
>
{
}
}