2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-cls-10.cs
blob0b53ef4dc6892b00f37f7ec8e3482eeca4c3e22c
1 // Compiler options: -warnaserror
3 using System;
4 [assembly:CLSCompliant (true)]
6 [CLSCompliant (false)]
7 public interface I {
8 [CLSCompliant (false)]
9 void Error (ulong arg);
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
21 public class MainClass {
22 public static void Main () {