Merge pull request #3565 from vargaz/no-free-imt-thunks
[mono.git] / mcs / errors / cs1107.cs
1 // CS1107: Duplicate parameter modifier `ref'
2 // Line: 6
3
4 static class S
5 {
6         static void Foo (ref ref ulong u)
7         {
8         }
9 }