[w32file] Move MonoIO.Find{First,Next,Close} to managed
[mono.git] / mcs / errors / cs1100.cs
1 // CS1100: The parameter modifier `this' can only be used on the first parameter
2 // Line: 6
3
4 static class S
5 {
6         static void Foo (bool b, this string s)
7         {
8         }
9 }