2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0230.cs
blob327eb6137aae4064b7a604eff65b08c26674e17a
1 // CS0230.cs: 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 in a) {
13 Console.WriteLine (x);