Merge branch 'master' into vplyashkun/inplace_rename_lags

GitOrigin-RevId: aaecc2a32e4e42de827efb45b8df733874a722e4
This commit is contained in:
Vladimir Plyashkun
2019-05-03 01:41:29 +03:00
committed by intellij-monorepo-bot
parent 8198db1ca9
commit 61a3e18b78
1377 changed files with 17931 additions and 13932 deletions
@@ -31,4 +31,15 @@ public class Main {
}
}
class X implements Map<String, String> {
class Y {
void test() {
for (Entry<String, String> entry : X.this.entrySet()) {
String k = entry.getKey();
String v = entry.getValue();
System.out.println(k + "-" + v);
}
}
}
}
}