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
2010-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0837.cs
blob
7c56fd1addd7876801dc13bdd621c41075eedbde
1
// CS0837: The `is' operator cannot be applied to a lambda expression or anonymous method
2
// Line: 8
3
4
class
X
5
{
6
static void
Main
()
7
{
8
if
(
delegate
{}
is int
) {
9
return
;
10
}
11
}
12
}