mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-04-01 00:21:29 +00:00
Reorganized SAM-related test data.
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
package test;
|
||||
|
||||
public interface SamSubinterfaceOfTwo {
|
||||
public interface Super1 {
|
||||
CharSequence f();
|
||||
}
|
||||
|
||||
public interface Super2<T> {
|
||||
T f();
|
||||
}
|
||||
|
||||
public interface Sub extends Super1, Super2<String> {
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user