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 #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs1988.cs
blob
b0ec5bc7f865ccd6d810fca8c97c36e974a53b26
1
// CS1988: Async methods cannot have ref or out parameters
2
// Line: 6
3
4
class
C
5
{
6
public async void
Test
(
ref int
arg
)
7
{
8
}
9
}