Remove invalid tests for image palettes in GdiPlusTest (#5671)
[mono.git] / mcs / errors / cs1579.cs
1 // CS1579: foreach statement cannot operate on variables of type `X' because it does not contain a definition for `GetEnumerator' or is inaccessible
2 // Line: 11
3
4 class X {
5 }
6
7 class Y {
8         void yy (X b)
9         {
10                 
11                 foreach (object a in b)
12                         ;
13         }
14 }