blob: 27e5218bc35767caea92d954694e1f2a6f5b6621 (
plain)
1
2
3
4
5
6
7
8
9
10
|
// CS0019: Operator `==' cannot be applied to operands of type `anonymous method' and `anonymous method'
// Line: 8
public class C
{
public static void Main ()
{
bool b = delegate () {} == delegate () {};
}
}
|