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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1601-2.cs
blob
b81d5e246c7bb1385a058bf712f04e89e80107e6
1
// cs1601-2.cs: Method or delegate parameter cannot be of type `ref System.ArgIterator'
2
// Line: 10
3
using
System
;
4
5
class
X
{
6
static void
Main
()
7
{
8
}
9
10
static void
M
(
ref
ArgIterator a
)
11
{
12
}
13
}