summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1636.cs
blob: 853a31b059bb9eab1bd79bcf2881e99b2e5624a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS1636: __arglist is not allowed in parameter list of iterators
// Line: 6

class C
{
    public System.Collections.IEnumerator GetEnumerator (__arglist)
    {
        yield return 1;
    }
    
}