[Mono-bugs] [Bug 62893][Nor] New - Problems with AssemblyKeyFile, AssemblyKeyName

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Wed, 11 Aug 2004 18:14:11 -0400 (EDT)


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by marek.safar@seznam.cz.

http://bugzilla.ximian.com/show_bug.cgi?id=62893

--- shadow/62893	2004-08-11 18:14:11.000000000 -0400
+++ shadow/62893.tmp.27335	2004-08-11 18:14:11.000000000 -0400
@@ -0,0 +1,36 @@
+Bug#: 62893
+Product: Mono: Compilers
+Version: unspecified
+OS: 
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: C#
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: marek.safar@seznam.cz               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: Problems with AssemblyKeyFile, AssemblyKeyName
+
+The mentioned attributes are not correctly implemented in mcs.
+
+All of these tree tests should report error CS1548 but are compiled
+successfully.
+
+
+Test #1:
+
+using e = System.Reflection;
+[assembly: e.AssemblyKeyName("A")]
+
+Test #2:
+
+[assembly: System.Reflection.AssemblyKeyName("A")]
+
+Test #3:
+
+[assembly: System.Reflection.AssemblyKeyNameAttribute("A" + "B")]