* roottypes.cs: Rename from tree.cs.
[mono.git] / mcs / errors / cs0712.cs
1 // cs0712.cs: Cannot create an instance of the static class `StaticClass'
2 // Line: 10
3
4 static class StaticClass {
5 }
6
7 public class MainClass {
8     public static void Main ()
9     {
10         new StaticClass ();
11     }
12 }