Bump API snapshot submodule
[mono.git] / mcs / errors / cs0253-3.cs
1 // CS0253: Possible unintended reference comparison. Consider casting the right side expression to type `System.Action' to get value comparison
2 // Line: 13
3 // Compiler options: -warnaserror
4
5 using System;
6
7 class MainClass
8 {
9         public static void Main ()
10         {
11                 Action a = null;
12                 object b = null;
13                 var x = a == b;
14         }
15 }