Merge pull request #3549 from lewurm/arm64-icache-big-little-fix
[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 }