[mcs] C#7 out variable declaration
[mono.git] / mcs / errors / cs1636.cs
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 }