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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0201.cs
blob
308488de95fdf1600f968f759bb8f0abf1869f98
1
// CS0201: Only assignment, call, increment, decrement, and new object expressions can be used as a statement
2
// Line: 10
3
4
class
TestClass
5
{
6
delegate void
test_delegate
(
int
arg
);
7
8
public
TestClass
()
9
{
10
test_delegate D
= (
b
) =>
"a"
;
11
}
12
}
13