repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[sgen] Don't trigger collections during allocation of thread objects (#17970)
[mono-project.git]
/
mcs
/
errors
/
cs0019-23.cs
blob
27e5218bc35767caea92d954694e1f2a6f5b6621
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
}