[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1104.cs
1 // CS1104: The parameter modifiers `this' and `params' cannot be used altogether
2 // Line: 6
3
4 static class S
5 {
6         static void Foo (params this int[] o)
7         {
8         }
9 }