Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs1636.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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;
    }
    
}