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

View File

@@ -0,0 +1,17 @@
// KT-5912
class JavaClass<T> {
public static interface Action<T> {
void call(T t);
}
public static class Some<T> {
public Some(T t) {
}
}
public static interface OnSubscribe<T> extends Action<Some<T>> {}
void perform(T t, OnSubscribe<T> subscribe) {
subscribe.call(new Some(t));
}
}