2008-02-18 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / cs0631-2.cs
1 // CS0631: The parameter modifier `ref' is not valid in this context
2 // Line: 5
3
4 class X {
5         public static explicit operator X (ref X[] foo)
6         {
7                 return null;
8         }
9 }