2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / cs0019-23.cs
1 // CS0019: Operator `==' cannot be applied to operands of type `anonymous method' and `anonymous method'
2 // Line: 8\r
3 \r
4 public class C\r
5 {\r
6         public static void Main ()\r
7         {
8                 bool b = delegate () {} == delegate () {};\r
9         }\r
10 }