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-33.cs
blob
fff74c905048dec88114ba710f02bb1686038f3c
1
// CS1644: Feature `asynchronous functions' cannot be used because it is not part of the C# 4.0 language specification
2
// Line: 9
3
// Compiler options: -langversion:4
4
5
using
System
;
6
7
class
C
8
{
9
public async void
Foo
()
10
{
11
}
12
}
13