[corlib] Add a special method for XI so the linker does not always have to generate it.
[mono-project.git] / mcs / errors / cs0019-54.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 == (() => { });