2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-15.cs
blob18163fa1f0592b5895f73b3fa4d5dc962a3a3801
1 // CS0019: Operator `==' cannot be applied to operands of type `A' and `int?'
2 // Line: 22
4 class A
6 public static bool operator == (A a, int b)
8 return false;
11 public static bool operator != (A a, int b)
13 return false;
17 class C
19 public static void Main ()
21 A a = new A ();
22 object b = a == Id;
25 static int? Id {
26 get { return 1; }