[Mono-bugs] [Bug 26463][Nor] New - protected internal fields result in incorrect flags

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
19 Jun 2002 11:03:03 -0000


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 lupus@ximian.com.

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

--- shadow/26463	Wed Jun 19 07:03:03 2002
+++ shadow/26463.tmp.9715	Wed Jun 19 07:03:03 2002
@@ -0,0 +1,28 @@
+Bug#: 26463
+Product: Mono/MCS
+Version: unspecified
+OS: other
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Normal
+Component: Misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: lupus@ximian.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: protected internal fields result in incorrect flags
+
+Compile this sample:
+class T {
+        protected internal string s;
+        protected internal string gets () {
+                return s;
+        }
+        static void Main() {}
+}
+and run PEVerify on it (or monodis): the s field has invalid flags
+(the method is ok, though). Happens on both runtimes.