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