Merge pull request #1900 from esdrubal/cyclic-ref
[mono-project.git] / mcs / errors / cs0631-3.cs
blobdfefb0397f5570f26a163aed4e392ab4cbea05f4
1 // CS0631: The parameter modifier `ref' is not valid in this context
2 // Line: 5
4 class X {
5 public static X operator < (ref X a, int b)
7 return null;