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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0201-11.cs
blob
536ee2424fac25e91d22b9ffd70b8fbec1d0e354
1
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2
// Line: 10
3
4
using
System
;
5
6
class
X
7
{
8
public static void
Main
()
9
{
10
new
Func
<
int
> (() =>
0
);
11
}
12
}