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>2005-04-08 14:35:51 +0400
committerMarek Safar <marek.safar@gmail.com>2005-04-08 14:35:51 +0400
commit9bbfdd1a0e9bebb8fc8437529bc051a7568db4e4 (patch)
treed04f79acbbf8282a3f850486f577aafbeb9fb638 /mcs/errors/cs0655-2.cs
parent254bfe32ceb8bce04b77036059a3ca9c716f5835 (diff)
parent5c8e67bec237322c75e2ff6f747692963b9198cf (diff)
new error tests
svn path=/trunk/mcs/; revision=42683
Diffstat (limited to 'mcs/errors/cs0655-2.cs')
-rw-r--r--mcs/errors/cs0655-2.cs14
1 files changed, 14 insertions, 0 deletions
diff --git a/mcs/errors/cs0655-2.cs b/mcs/errors/cs0655-2.cs
new file mode 100644
index 00000000000..10e4441fa25
--- /dev/null
+++ b/mcs/errors/cs0655-2.cs
@@ -0,0 +1,14 @@
+// cs0655.cs: 'd' is not a valid named attribute argument because its type is not valid attribute type
+// Line: 11
+
+using System;
+
+class TestAttribute : Attribute
+{
+ public int[][] a;
+}
+
+[Test (a = null)]
+class C
+{
+} \ No newline at end of file