2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-14.cs
blob28350e7d46b0ba83ae2b4270c7c8886916cde6cb
1 // CS0019: Operator `==' cannot be applied to operands of type `A.D' and `anonymous method'
2 // Line: 11
4 class A
6 delegate void D ();
8 static void Main ()
10 D d = null;
11 bool r = d == (() => { });