Fixed filename case.

This commit is contained in:
Evgeny Gerashchenko
2014-10-07 20:55:26 +04:00
parent 33cdefffe3
commit b80f82dffd
3 changed files with 0 additions and 0 deletions
@@ -0,0 +1,19 @@
class JavaClass {
public interface Super1<T> {
Thread call(T t);
}
public interface Super2<T> {
T call(String s);
}
public interface Sub extends Super1<String>, Super2<Thread> {
Thread call(String s);
}
static void samAdapter(Sub sub) {
((Super1) sub).call("");
((Super2) sub).call("");
sub.call("");
}
}