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
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1644-23.cs
blob
d5103660edbef8503a8f30a28939b00c32c6ada2
1
// CS1644: Feature `lambda expressions' cannot be used because it is not part of the C# 2.0 language specification
2
// Line: 11
3
// Compiler options: -langversion:ISO-2
4
5
class
C
6
{
7
delegate void
D
();
8
9
public void
Foo
()
10
{
11
D e
= () =>
{ }
;
12
}
13
}
14