[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }