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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs1636.cs
blob
853a31b059bb9eab1bd79bcf2881e99b2e5624a0
1
// CS1636: __arglist is not allowed in parameter list of iterators
2
// Line: 6
3
4
class
C
5
{
6
public
System
.
Collections
.
IEnumerator
GetEnumerator
(
__arglist
)
7
{
8
yield return
1
;
9
}
10
11
}