* HttpWebRequestTest.cs: Remove usage of deprecated Assertion class.
[mono.git] / mcs / errors / cs0631-3.cs
1 // CS0631: The modifiers `ref' and `out' are not valid in this context\r
2 // Line: 5\r
3 \r
4 class X {\r
5         public static X operator < (ref X a, int b)\r
6         {\r
7                 return null;\r
8         }\r
9 }\r