2010-05-27 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0019-14.cs
blob2e2f5209b5eeb79c987a009d7c4bbdc261dd4c88
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 == (() => { });