* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / gcs0721.cs
1 // CS0721: `C': static types cannot be used as parameters
2 // Line: 6
3
4 static class C
5 {
6         static void Foo (this C c)
7         {
8         }
9 }