* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / gcs1106.cs
1 // CS1106: `S.Foo(this string)': Extension methods must be defined in a non-generic static class
2 // Line: 6
3
4 class S
5 {
6         static void Foo (this string s)
7         {
8         }
9 }