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:
authorRavi Pratap M <ravi@mono-cvs.ximian.com>2002-09-06 23:46:58 +0400
committerRavi Pratap M <ravi@mono-cvs.ximian.com>2002-09-06 23:46:58 +0400
commit9ed5c36cd30268f1d1767915ad8d062ed650c962 (patch)
tree448bafde383c058a7e88fb2aedbe09be2fe6fc08 /mcs/errors/cs0182.cs
parent0441b0183a6cbc3bca784a47221fe85cbacd6641 (diff)
Add new error that we catch
svn path=/trunk/mcs/; revision=7288
Diffstat (limited to 'mcs/errors/cs0182.cs')
-rw-r--r--mcs/errors/cs0182.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0182.cs b/mcs/errors/cs0182.cs
new file mode 100644
index 00000000000..6f1562a060b
--- /dev/null
+++ b/mcs/errors/cs0182.cs
@@ -0,0 +1,14 @@
+// cs0182.cs :
+// Line : 10
+
+using System;
+
+class My : Attribute {
+ public My (object obj) { }
+}
+
+[My (null)]
+class T {
+ static void Main() {}
+}
+