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
[System.Data] Try to fix random DataViewTest.DefaultColumnNameAddListChangedTest...
[mono-project.git]
/
mcs
/
errors
/
cs4034.cs
blob
7d8afd1e1dc1f0f20b618e3d28a52900e6b507fe
1
// CS4034: The `await' operator can only be used when its containing lambda expression is marked with the `async' modifier
2
// Line: 11
3
4
using
System
;
5
using
System
.
Threading
.
Tasks
;
6
7
class
C
8
{
9
public void
Test
()
10
{
11
Action a
= () =>
await
Task
.
FromResult
(
1
);
12
}
13
}