Added test with vararg parameter in SAM interface.

This commit is contained in:
Evgeny Gerashchenko
2013-06-20 17:45:13 +04:00
parent 906f900b28
commit 63dbfcb81c
3 changed files with 17 additions and 0 deletions
@@ -0,0 +1,5 @@
package test;
public interface VarargParameter {
void f(String... strings);
}