Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs1108.cs
1 // CS1108: A parameter cannot have specified more than one modifier
2 // Line: 6
3
4 public class C
5 {
6         public void Foo (ref out int)
7         {
8         }
9 }