Revert "doh, miscopied file names."
[mono-project.git] / mcs / errors / cs0446.cs
blob8f27eb80b53ac7d4fec4c38fcfc7a3ceca4dc261
1 // CS0446: Foreach statement cannot operate on a `method group'
2 // Line: 8
4 class C
6 static void M ()
8 foreach (int i in Test)
13 static void Test () { }