codeowners update
[mono.git] / mcs / tests / test-cls-10.cs
1 // Compiler options: -warnaserror
2
3 using System;
4 [assembly:CLSCompliant (true)]
5
6 [CLSCompliant (false)]
7 public interface I {
8         [CLSCompliant (false)]
9         void Error (ulong arg);
10 }
11
12 [CLSCompliant (false)]
13 public interface I2 {
14 #pragma warning disable 3018    
15         [CLSCompliant (true)]
16         void Error (long arg);
17 #pragma warning disable 3018        
18 }
19
20
21 public class MainClass {
22         public static void Main () {
23         }
24 }