Change Signature: Update signatures of lambdas passed to SAM constructors

This commit is contained in:
Alexey Sedunov
2014-11-21 14:00:47 +03:00
parent 8f2c543f7e
commit c9873428de
49 changed files with 654 additions and 85 deletions
@@ -0,0 +1,7 @@
interface SAM {
String <caret>foo(String s, int n);
}
class JTest {
static void samTest(SAM sam) { }
}