Merge pull request #4615 from alexanderkyte/string_error_handling
[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 }