Updated with review feedback.
[mono.git] / mcs / errors / cs1106.cs
1 // CS1106: `S.Foo(this string)': Extension methods must be defined in a non-generic static class
2 // Line: 6
3
4
5 class S
6 {
7         static void Foo (this string s)
8         {
9         }
10 }