Forgot this file
[mono.git] / mcs / errors / cs0201.cs
1 //
2 // cs0201.cs: if a meaningless statement is encountered error cs0201 have to be thrown
3 //
4
5 using System;
6
7 public class X
8 {
9         public static void Main ()
10         {
11                 2 * 3;
12         }
13 }