Merge pull request #5714 from alexischr/update_bockbuild
[mono.git] / mcs / errors / cs3010.cs
1 // CS3010: `I.Error': CLS-compliant interfaces must have only CLS-compliant members
2 // Line: 13
3 // Compiler options: -warnaserror -warn:1
4
5 using System;
6 [assembly:CLSCompliant (true)]
7
8 public interface I {
9         [CLSCompliant (true)]
10         void Valid (bool arg);
11     
12         [CLSCompliant (false)]
13         event AssemblyLoadEventHandler Error;
14 }