2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs3010.cs
blob6532d467f5d0c07b99638870ea1b01b473bed2e3
1 // CS3010: `I.Error': CLS-compliant interfaces must have only CLS-compliant members
2 // Line: 13
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant (true)]
8 public interface I {
9 [CLSCompliant (true)]
10 void Valid (bool arg);
12 [CLSCompliant (false)]
13 event AssemblyLoadEventHandler Error;