restore comments: simplify typed lambda

This commit is contained in:
Anna.Kozlova
2018-01-17 14:08:05 +01:00
parent 52158da465
commit d0a2fce763
3 changed files with 9 additions and 4 deletions
@@ -10,6 +10,6 @@ class ReturnTypeCompatibility {
}
public static void main(String[] args) {
call("", (Str<caret>ing i) -> "");
call("", (Str<caret>ing/*comment*/ i) -> "");
}
}
@@ -10,6 +10,6 @@ class ReturnTypeCompatibility {
}
public static void main(String[] args) {
call("", i -> "");
call("", i -> /*comment*/ "");
}
}