[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0019-68.cs
blob74dac35fcac0fdf686c40ac15f6047fad0d430b5
1 // CS0019: Operator `==' cannot be applied to operands of type `void' and `null'
2 // Line: 11
4 using System;
6 class C
8 public static void Main ()
10 Action a = () => {};
11 bool b = a () == null;