Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0631.cs
1 // CS0631: The parameter modifier `ref' is not valid in this context
2 // Line: 5
3
4 class X {
5         public int this [ref int arg] { set {} }
6 }