fix ET tests for 4.0
[mcs.git] / errors / cs0019-23.cs
blobbf6ba95a51042888eee05b86c1d889e0e60191ea
1 // CS0019: Operator `==' cannot be applied to operands of type `anonymous method' and `anonymous method'
2 // Line: 8
4 public class C
6 public static void Main ()
8 bool b = delegate () {} == delegate () {};