quote only work on lambda on net_4_0
[mcs.git] / errors / cs0019-30.cs
blob95d03e19d845d461e757909cf4246c7db27ef97b
1 // CS0019: Operator `!=' cannot be applied to operands of type `Test.DelegateA' and `Test.DelegateB'
2 // Line: 13
4 using System;
6 public class Test
8 public delegate int DelegateA(bool b);
9 public delegate int DelegateB(bool b);
11 static bool TestCompare (DelegateA a, DelegateB b)
13 return a != b;