Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git] / mcs / errors / cs0019-23.cs
blob27e5218bc35767caea92d954694e1f2a6f5b6621
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 () {};