Updated with review feedback.
[mono.git] / mcs / errors / cs1519-4.cs
1 // CS1519: Unexpected symbol `;' in class, struct, or interface member declaration
2 // Line: 8
3
4 class C
5 {
6     public static void Main ()
7     {
8     };
9 }