Merge pull request #5714 from alexischr/update_bockbuild
[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 }