[mcs] New property/indexer cannot have accessors implementing an interface in base...
[mono.git] / mcs / errors / cs0642-3.cs
1 // CS0642: Possible mistaken empty statement
2 // Line: 10
3 // Compiler options: -warnaserror -warn:3
4
5 public class C
6 {
7     public static void Main ()
8     {
9         for (;;);
10             { }
11     }
12 }
13