New test.
[mono.git] / mcs / errors / cs3010.cs
1 // cs3010.cs: `I.Error': CLS-compliant interfaces must have only CLS-compliant members
2 // Line: 12
3
4 using System;
5 [assembly:CLSCompliant (true)]
6
7 public interface I {
8         [CLSCompliant (true)]
9         void Valid (bool arg);
10     
11         [CLSCompliant (false)]
12         event AssemblyLoadEventHandler Error;
13 }