New test.
[mono.git] / mcs / errors / cs3001-9.cs
1 // cs3001-9.cs: Argument type `ulong' is not CLS-compliant
2 // Line: 13
3
4 using System;
5 [assembly:CLSCompliant (A.f)]
6
7 public class A
8 {
9     public const bool f = true;
10 }
11
12 public interface I {
13         void Test (ulong arg);
14 }