[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0230.cs
blobc330d083788c07c3f4d44304ae0fc6352222fe75
1 // CS0230: Type and identifier are both required in a foreach statement
2 // Line: 12
4 using System;
6 class X
8 public static void Main()
10 int [] a = new int [5] {5, 4, 3, 2, 1};
12 foreach (int ) {
13 Console.WriteLine (x);