summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1599-3.cs
blob: e4869dcaf70711d7058b4418667bab54b5ff9e0c (plain)
1
2
3
4
5
6
7
8
9
// CS1599: Method or delegate cannot return type `System.ArgIterator'
// Line: 8

using System;

class C
{
    delegate ArgIterator Test (int arg);
}