2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-5.cs
blob894a9fda5170f00ba93801654eaa7afed6d0a878
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;