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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs1677.cs
blob
d371ef532b651008c50af62e477739820e5611af
1
// CS1677: Parameter `1' should not be declared with the `ref' keyword
2
// Line: 9
3
4
delegate void
D
(
int
x
);
5
6
class
X
{
7
static void
Main
()
8
{
9
D d2
=
delegate
(
ref int
x
) {};
10
}
11
}