Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarek Safar <marek.safar@gmail.com>2004-03-12 14:43:22 +0300
committerMarek Safar <marek.safar@gmail.com>2004-03-12 14:43:22 +0300
commitaf32324b4e1b1f2c1f03969afe7af1abc41d707e (patch)
treeba29f7edb19806eb22187305206ef393a020bd54 /mcs/errors/cs3001-9.cs
parent251648b01f95a891dd23ab2b79a65740f4ad7de0 (diff)
2004-03-12 Marek Safar <marek.safar@seznam.cz>
* cs0182-1.cs, cs3001-9.cs: New error tests. svn path=/trunk/mcs/; revision=23955
Diffstat (limited to 'mcs/errors/cs3001-9.cs')
-rw-r--r--mcs/errors/cs3001-9.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs3001-9.cs b/mcs/errors/cs3001-9.cs
new file mode 100644
index 00000000000..49ed0f92753
--- /dev/null
+++ b/mcs/errors/cs3001-9.cs
@@ -0,0 +1,14 @@
+// cs3001.cs: Argument type 'ulong' is not CLS-compliant
+// Line: 13
+
+using System;
+[assembly:CLSCompliant (A.f)]
+
+public class A
+{
+ public const bool f = true;
+}
+
+public interface I {
+ void Test (ulong arg);
+}