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