[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0253-3.cs
blob0cf7968f7cbbde506e72d761cd94e90ab865f149
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
5 using System;
7 class MainClass
9 public static void Main ()
11 Action a = null;
12 object b = null;
13 var x = a == b;