New test.
[mono.git] / mcs / errors / cs1599-2.cs
1 // cs1599-2.cs: Method or delegate cannot return type `System.ArgIterator'
2 // Line: 8
3
4 using System;
5
6 class C
7 {
8         public ArgIterator Method ()
9         {
10                 return null;
11         }
12 }