2007-09-25 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / cs0631-2.cs
1 // CS0631: The modifiers `ref' and `out' are 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 }