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

cs0071-2.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a6f1a9ed17287a65dc2d8ab146f2e8868a7ba5b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

public delegate void Foo (object source);

interface IFoo {
        event Foo OnFoo;
}

class ErrorCS0071 : IFoo {
        public event Foo IFoo.OnFoo () { }
        public static void Main () {
        }
}