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-02 10:54:59 +0300
committerMarek Safar <marek.safar@gmail.com>2004-03-02 10:54:59 +0300
commit74cfd9d9e0ba87ce82117a9c430e3b3146acead8 (patch)
treed8f8d775ba484b272021dfc3ce5acaef4b62b0be /mcs/errors/cs0246-5.cs
parentf33e9e65a54421c1ab79e099fc07d3bc3c37a6a7 (diff)
2004-03-02 Marek Safar <marek.safar@seznam.cz>
* cs0246-5.cs: New error test. svn path=/trunk/mcs/; revision=23604
Diffstat (limited to 'mcs/errors/cs0246-5.cs')
-rw-r--r--mcs/errors/cs0246-5.cs11
1 files changed, 11 insertions, 0 deletions
diff --git a/mcs/errors/cs0246-5.cs b/mcs/errors/cs0246-5.cs
new file mode 100644
index 00000000000..ae4396541ad
--- /dev/null
+++ b/mcs/errors/cs0246-5.cs
@@ -0,0 +1,11 @@
+// cs0246.cs: The type or namespace name 'AAAA' could not be found (are you missing a using directive or an assembly reference?)
+// Line: 7
+
+using System;
+[assembly:CLSCompliant (true)]
+
+[AAAA(false)]
+public sealed class Region
+{
+ public Region() {}
+}