lambda completion: reformat, ensure unique names (IDEA-128567)

This commit is contained in:
Anna Kozlova
2014-08-13 18:37:05 +04:00
parent 0a5147b8af
commit c98d7f0c5e
4 changed files with 40 additions and 5 deletions
@@ -0,0 +1,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>
}
}
@@ -0,0 +1,10 @@
interface I<T> {
void m(T t, String s);
}
class Test {
public static void main(String[] args) {
String s = "";
I<String> i = <caret>
}
}