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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1706-3.cs
blob
f4f14546f8c99979d149ce939cef106aa0236d56
1
// CS1706: Anonymous methods and lambda expressions cannot be used in the current context
2
// Line: 8
3
4
delegate void
D
();
5
6
class
C
7
{
8
const object
c
=
new
D
(
delegate
{});
9
}