[w32file] Remove dead code
[mono.git] / mcs / errors / cs1102.cs
1 // CS1102: The parameter modifiers `this' and `out' cannot be used altogether
2 // Line: 6
3
4 static class S
5 {
6         static void Foo (this out string s)
7         {
8         }
9 }