Bump NuGet.BuildTasks to get new updates and switch to `dev` branch (#5566)
[mono.git] / mcs / errors / cs0019-5.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `X' and `Y'
2 // Line : 13
3
4 class X {
5 }
6
7 class Y {
8 }
9
10 class T {
11         static void Main ()
12         {
13                 X x = new X ();
14                 Y y = new Y ();
15
16                 if (x == y){
17                 }
18         }
19 }