2005-06-05 Peter Bartok <pbartok@novell.com>
[mono.git] / mcs / tests / cls-test-10.cs
1 using System;
2 [assembly:CLSCompliant (true)]
3
4 [CLSCompliant (false)]
5 public interface I {
6         [CLSCompliant (false)]
7         void Error (ulong arg);
8 }
9
10 [CLSCompliant (false)]
11 public interface I2 {
12         [CLSCompliant (true)]
13         void Error (long arg);
14 }
15
16
17 public class MainClass {
18         public static void Main () {
19         }
20 }