[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0019-60.cs
blobc103e333ae177afde3dda531ec9f90b2aa3bd70b
1 // CS0019: Operator `>' cannot be applied to operands of type `S' and `S?'
2 // Line: 9
4 public class Test
6 public static void Main ()
8 S a = new S ();
9 S? b = null;
10 string res = a > b;
14 struct S
16 public static string operator > (S a, S b)
18 return ">";
21 public static string operator < (S a, S b)
23 return "<";