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

cs1599-3.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c0059bb2a0a56cb2a8c5b35ea8bf4564f2be93a7 (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);
}