[mcs] Allow properties and indexers of by-ref values to be set without setter
[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 }