Merge remote branch 'upstream/master'
[mono.git] / mcs / errors / cs1101.cs
1 // CS1101: The parameter modifiers `this' and `ref' cannot be used altogether
2 // Line: 6
3
4 static class S
5 {
6         static void Foo (ref this string s)
7         {
8         }
9 }