inline varargs parameter in calls when method is inlined (IDEADEV-41353)

This commit is contained in:
anna
2010-01-14 12:55:58 +03:00
parent f4e148f0d5
commit eced11faaf
8 changed files with 66 additions and 4 deletions

View File

@@ -1,8 +1,7 @@
class BugTest {
{
String[] s = new String[] {""};
for (String s1 : s) {
for (String s1 : new String[] {""}) {
}
}