* Control.cs: fix the checks so that they work correctly for mdi
[mcs.git] / errors / cs3001-9.cs
blobe116fcb37dc760d8d91c91ecf1435c5f18f60fea
1 // cs3001-9.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);