diff -r 000000000000 -r 959103a6100f test/tools/javac/lambda/TargetType13.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/javac/lambda/TargetType13.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,21 @@ +/* + * @test /nodynamiccopyright/ + * @bug 8003280 + * @summary Add lambda tests + * failure to infer exception thrown types from lambda body causes checked exception to be skipped + * @author Maurizio Cimadamore + * @compile/fail/ref=TargetType13.out -XDlambdaInferenceDiags=false -XDrawDiagnostics TargetType13.java + */ + +class TargetType13 { + + interface SAM { + void m(Integer x) throws E; + } + + static void call(SAM s) throws E { } + + void test() { + call(i -> { if (i == 2) throw new Exception(); return; }); + } +}