Merge pull request #5675 from mono/glib-debug-symbols
[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 }