repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1669-4.cs
blob
273795f69a1bf839c37ab39c2a2b60c06a31d36a
1
// CS1669: __arglist is not valid in this context
2
// Line: 10
3
4
delegate object
D
(
object
o
);
5
6
class
C
7
{
8
public void
Test
()
9
{
10
D d
=
delegate
(
__arglist
) {
11
return this
;
12
};
13
}
14
}