cleol
[mcs.git] / errors / cs3003-1.cs
blobe14f5336af8a394c855b376c90d94e8432a4979a
1 // CS3003: Type of `CLSClass.MyEvent' is not CLS-compliant
2 // Line: 8
3 // Compiler options: -warnaserror -warn:1
5 [assembly:System.CLSCompliant (true)]
7 [System.CLSCompliant (false)]
8 public delegate void MyDelegate ();
10 public class CLSClass {
11 public event MyDelegate MyEvent;