cleol
[mcs.git] / errors / cs3001-9.cs
blobc0a81972486faaba05e286fa5436e602d99ec902
1 // CS3001: Argument type `ulong' is not CLS-compliant
2 // Line: 14
3 // Compiler options: -warnaserror -warn:1
5 using System;
6 [assembly:CLSCompliant (A.f)]
8 public class A
10 public const bool f = true;
13 public interface I {
14 void Test (ulong arg);