blob: df8b50bc5aa08f0eb31e5b74cf536dcf198ccfa2 [file] [log] [blame]
package tryresources18_in;
import java.io.FileNotFoundException;
interface TestLambda4 {
int foo(int i);
default TestLambda4 method1() {
/*[*/return x -> {
if (x == 0)
throw new FileNotFoundException();
return x;
};/*]*/
}
}