not a statement -> declaration not allowed here (IDEA-152090)

This commit is contained in:
Anna Kozlova
2016-02-24 12:28:47 +01:00
parent 439cac6bcb
commit f8e59f5965
3 changed files with 10 additions and 3 deletions
@@ -16,9 +16,9 @@ public class a12 {
<error descr="Not a statement">new int[]{1};</error>
<error descr="Not a statement">new String[]{new String()};</error>
if (i==1)
<error descr="Not a statement">String s00 = "";</error>
<error descr="Declaration not allowed here">String s00 = "";</error>
for (;;)
<error descr="Not a statement">String s01 = "";</error>
<error descr="Declaration not allowed here">String s01 = "";</error>
for (<error descr="Not a statement">1==2,i=3;</error> i<3; <error descr="Not a statement">!(1==2)</error>);