summaryrefslogtreecommitdiff
path: root/mcs/errors/cs3003-1.cs
blob: e14f5336af8a394c855b376c90d94e8432a4979a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS3003: Type of `CLSClass.MyEvent' is not CLS-compliant
// Line: 8
// Compiler options: -warnaserror -warn:1

[assembly:System.CLSCompliant (true)]

[System.CLSCompliant (false)]
public delegate void MyDelegate ();

public class CLSClass {
        public event MyDelegate MyEvent;
}