(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / cs3001-9.cs
blob49ed0f927530d192406e71ea3c629d7b4d843779
1 // cs3001.cs: Argument type 'ulong' is not CLS-compliant
2 // Line: 13
4 using System;
5 [assembly:CLSCompliant (A.f)]
7 public class A
9 public const bool f = true;
12 public interface I {
13 void Test (ulong arg);