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
Fixes the mono/tests/gc-graystack-stress test on Windows x64
[mono-project.git]
/
mcs
/
errors
/
cs0201-9.cs
blob
4421a17896d28e0e8731001467c0bf7052daea42
1
// CS0201: Only assignment, call, increment, decrement, await, and new object expressions can be used as a statement
2
// Line: 9
3
4
class
D
5
{
6
void
Foo
()
7
{
8
System
.
Threading
.
Tasks
.
TaskFactory m
=
null
;
9
m
.
StartNew
(() =>
delegate
{ }
);
10
}
11
}