Updated with review feedback.
[mono.git] / mcs / errors / cs0446.cs
1 // CS0446: Foreach statement cannot operate on a `method group'
2 // Line: 8
3
4 class C
5 {
6         static void M ()
7         {
8                 foreach (int i in Test)
9                 {
10                 }
11         }
12
13         static void Test () { }
14 }