summaryrefslogtreecommitdiff
path: root/java/java-tests/testData/codeInsight/completion/smartType/InLambdaPositionSameNames-out.java
blob: 48157c4ded2aab1fef42898005715c5a1ab638f5 (plain)
1
2
3
4
5
6
7
8
9
10
interface I<T> {
  void m(T t, String s);
}

class Test {
  public static void main(String[] args) {
    String s = "";
    I<String> i = (s1, s2) -> <caret>
  }
}