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-07 10:58:31 +0400
committerMarek Safar <marek.safar@gmail.com>2005-04-07 10:58:31 +0400
commit5c8e67bec237322c75e2ff6f747692963b9198cf (patch)
tree784bb2b1618329770494817aaa52e46bb990fc85 /mcs/errors/cs1608.cs
parent7e5cc5083f129f7cddd5a9ae9c463ab4165c8b71 (diff)
new tests
svn path=/trunk/mcs/; revision=42624
Diffstat (limited to 'mcs/errors/cs1608.cs')
-rw-r--r--mcs/errors/cs1608.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/mcs/errors/cs1608.cs b/mcs/errors/cs1608.cs
new file mode 100644
index 00000000000..f8a4fdc4a7c
--- /dev/null
+++ b/mcs/errors/cs1608.cs
@@ -0,0 +1,9 @@
+// cs1608.cs: The RequiredAttribute attribute is not permitted on C# types
+// Line: 6
+
+using System.Runtime.CompilerServices;
+
+[RequiredAttribute (typeof (object))]
+class ClassMain {
+}
+