repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0019-23.cs
blob
bf6ba95a51042888eee05b86c1d889e0e60191ea
1
// CS0019: Operator `==' cannot be applied to operands of type `anonymous method' and `anonymous method'
2
// Line: 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
bool
b
=
delegate
()
{} == delegate () {}
;
9
}
10
}