2009-02-19 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / test-cls-10.cs
blobf919ec6341ada725ee9f67ad25b4a8db0b7e324d
1 using System;
2 [assembly:CLSCompliant (true)]
4 [CLSCompliant (false)]
5 public interface I {
6 [CLSCompliant (false)]
7 void Error (ulong arg);
10 [CLSCompliant (false)]
11 public interface I2 {
12 [CLSCompliant (true)]
13 void Error (long arg);
17 public class MainClass {
18 public static void Main () {