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
/
cs1670.cs
blob
78f1d0e2af75e4f3c4e6e80cf9068fe99c7ab1a1
1
// CS1670: The `params' modifier is not allowed in current context
2
// Line: 10
3
4
delegate object
D
(
params object
[]
args
);
5
6
class
C
7
{
8
public void
Test
()
9
{
10
D d
=
delegate
(
params object
[]
args
) {
11
return this
;
12
};
13
}
14
}