Merge pull request #5002 from BrzVlad/feature-sgen-modes
[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 }