summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/daemonCodeAnalyzer/lambda/mostSpecific/NoReturnTypeResolutionForThrownException.java
blob: 81429131d0990f6d90e40f8aaba259bf2ed598cb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class Test {

  interface I1 {String m();}
  interface I2 {void m();}

  void call(I1 p) { }
  void call(I2 p) { }
 
  void test() {
    call<error descr="Ambiguous method call: both 'Test.call(I1)' and 'Test.call(I2)' match">(() -> { throw new RuntimeException(); })</error>;
    call(() -> { if (true) return ""; throw new RuntimeException(); });
    call(() -> { if (true) return; throw new RuntimeException(); });
  }
}