Merge pull request #2646 from ludovic-henry/fix-processwatch-dispose
[mono.git] / mcs / errors / cs1611.cs
1 // CS1611: The params parameter cannot be declared as ref or out
2 // Line: 6
3
4 class Test
5 {
6     public static void Error (params ref int args) {}
7 }