[ilasm] Don't break arguments compatiblity
[mono-project.git] / mcs / errors / cs0019-45.cs
blobbe9152304f639860e528d157cd2abe4d05350bd2
1 // CS0019: Operator `==' cannot be applied to operands of type `method group' and `null'
2 // Line: 8
4 public class C
6 public static void Main ()
8 bool a = DelegateMethod == null;
11 static int DelegateMethod(bool b)
13 return 3;