Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs0230.cs
index 327eb6137aae4064b7a604eff65b08c26674e17a..c330d083788c07c3f4d44304ae0fc6352222fe75 100644 (file)
@@ -1,4 +1,4 @@
-// CS0230.cs: Type and identifier are both required in a foreach statement
+// CS0230: Type and identifier are both required in a foreach statement
 // Line: 12
 
 using System;
@@ -9,7 +9,7 @@ class X
        {
                int [] a = new int [5] {5, 4, 3, 2, 1};
                
-               foreach (int in a) {
+               foreach (int ) {
                        Console.WriteLine (x);
                }
        }