* default.build: Fix relative path to key. Avoid use of ugly foreach
[mono.git] / mcs / errors / gcs1109.cs
1 // CS1109: `C.S.Foo(this string)': Extension methods cannot be defined in a nested class
2 // Line: 8
3
4 class C
5 {
6         static class S
7         {
8                 static void Foo (this string s)
9                 {
10                 }
11         }
12 }