inline: ensure parenthesis around numeric sum used inside string concatenation (IDEA-145795)

This commit is contained in:
Anna Kozlova
2015-10-05 20:02:23 +02:00
parent 84f57248f7
commit 4afad1703c
4 changed files with 41 additions and 1 deletions
@@ -0,0 +1,10 @@
class a {
public static void main(String[] args)
{
int x = 2;
System.out.println("" + (x + 2));
}
}