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-05-07 13:24:40 +0400
committerMarek Safar <marek.safar@gmail.com>2004-05-07 13:24:40 +0400
commit13c581d5cf00c17352eb9dd575d8826ae05303ea (patch)
treeb67579475c812bdba5e80a28d12051aa7997d69a /mcs/errors/cs0657.cs
parent1fab1be621786ada49b2e104933dfa6183be681e (diff)
2004-05-07 Marek Safar <marek.safar@seznam.cz>
* cs0579-4.cs, CS0579-4-1.cs, * cs0579-5.cs, * cs0657.cs, * cs3015-2.cs, * cs3019.cs, * cs3019-2.cs: 6 new error tests. svn path=/trunk/mcs/; revision=26890
Diffstat (limited to 'mcs/errors/cs0657.cs')
-rw-r--r--mcs/errors/cs0657.cs10
1 files changed, 10 insertions, 0 deletions
diff --git a/mcs/errors/cs0657.cs b/mcs/errors/cs0657.cs
new file mode 100644
index 00000000000..43713fb4617
--- /dev/null
+++ b/mcs/errors/cs0657.cs
@@ -0,0 +1,10 @@
+// cs0657.cs : 'assembly' is not a valid attribute location for this declaration. Valid attribute locations for this declaration are 'type'
+// Line : 7
+
+using System.Reflection;
+
+namespace N {
+ [assembly: AssemblyKeyName("")]
+ class A {}
+}
+