Copied remotely
[mono.git] / mcs / errors / cs1579.cs
1 // cs1579.cs: foreach statement cannot operate on variables of type X because X does not contain a definition for GetEnumerator or is not accessible
2 // Line: 10
3 class X {
4 }
5
6 class Y {
7         void yy (X b)
8         {
9                 
10                 foreach (object a in b)
11                         ;
12         }
13 }