**** Merged from MCS ****
[mono-project.git] / mcs / tests / cls-test-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 () {