Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs0642-4.cs
1 // CS0642: Possible mistaken empty statement
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
4
5 public class C
6 {
7     public void Test (System.Collections.IEnumerable e)
8     {
9         foreach (object o in e);
10             { }
11     }
12 }
13