Add regression test: parameter from lambda is removed

This commit is contained in:
Natalia Ukhorskaya
2016-02-20 12:41:48 +03:00
parent 29f385a713
commit c864b67550
5 changed files with 35 additions and 0 deletions
+4
View File
@@ -72,6 +72,10 @@ public interface JFunction0 {
void foo();
}
public interface Listener {
public void onChange(int visibility);
}
public interface JFunction1ReturnType<T> {
void foo(T t);
}