new test
[mono.git] / mcs / errors / cs3008-2.cs
1 // cs3008-2.cs: Identifier `CLSClass._myEvent' is not CLS-compliant
2 // Line: 8
3
4 using System;
5 [assembly: CLSCompliant(true)]
6
7 public delegate void MyDelegate();
8
9 public class CLSClass {
10         public event MyDelegate _myEvent;
11 }