* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / cs0723.cs
1 // CS0723: `sc': cannot declare variables of static types
2 // Line: 10
3
4 static class StaticClass {
5 }
6
7 class MainClass {
8     public static void Main ()
9     {
10         StaticClass sc;
11     }
12 }