Testdata fix after 6f6f693c6a3c

GitOrigin-RevId: 1e8e50c91e78ef61788e922cdbc5c92da7c07b61
This commit is contained in:
Tagir Valeev
2020-05-18 04:10:49 +00:00
committed by intellij-monorepo-bot
parent ec2c3aeebd
commit 0191ffb437
2 changed files with 3 additions and 1 deletions
@@ -2,7 +2,8 @@ import java.util.List;
class System {
// Conflict resolution deliberately not supported
static void foo(List<String> ls) {
ls.forEach(java.lang.System.err::println<caret>);
ls.forEach(System.err::println<caret>);
}
}
@@ -2,6 +2,7 @@ import java.util.List;
class System {
// Conflict resolution deliberately not supported
static void foo(List<String> ls) {
ls.forEach(<caret>);
}