[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0642-4.cs
blobdc8f3b51131f5e9910156765a0007d28331daa12
1 // CS0642: Possible mistaken empty statement
2 // Line: 9
3 // Compiler options: -warnaserror -warn:3
5 public class C
7 public void Test (System.Collections.IEnumerable e)
9 foreach (object o in e);
10 { }