[Mono-bugs] [Bug 42879][Nor] New - mono does not format flags correctly
bugzilla-daemon@rocky.ximian.com
bugzilla-daemon@rocky.ximian.com
Tue, 13 May 2003 06:03:25 -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 dietmar@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=42879
--- shadow/42879 Tue May 13 06:03:25 2003
+++ shadow/42879.tmp.12576 Tue May 13 06:03:25 2003
@@ -0,0 +1,44 @@
+Bug#: 42879
+Product: Mono/Class Libraries
+Version: unspecified
+OS: other
+OS Details:
+Status: NEW
+Resolution:
+Severity:
+Priority: Normal
+Component: CORLIB
+AssignedTo: mono-bugs@ximian.com
+ReportedBy: dietmar@ximian.com
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL:
+Cc:
+Summary: mono does not format flags correctly
+
+Steps to reproduce the problem:
+
+1. compile and run the following code:
+
+using System;
+class Test
+{
+ static void Main ()
+ {
+ Type t = typeof (Type []);
+ Console.WriteLine ("Attributes: {0}", t.Attributes);
+ }
+}
+
+Actual Results:
+
+Attributes: 8449
+
+Expected Results:
+
+Attributes: AutoLayout, AnsiClass, NotPublic, Public, Sealed, Serializable
+
+
+How often does this happen?
+
+always