[Mono-bugs] [Bug 72718][Wis] New - wr

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Fri, 18 Feb 2005 06:43:32 -0500 (EST)


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 projectmonokochi@rediffmail.com.

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

--- shadow/72718	2005-02-18 06:43:31.000000000 -0500
+++ shadow/72718.tmp.16579	2005-02-18 06:43:31.000000000 -0500
@@ -0,0 +1,71 @@
+Bug#: 72718
+Product: Mono: Compilers
+Version: unspecified
+OS: SUSE 9.1
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Wishlist
+Component: C#
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: projectmonokochi@rediffmail.com               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: wr
+
+Please fill in this template when reporting a bug, unless you know what 
+you are doing.
+Description of Problem:
+
+////test1.cs:
+
+using System;
+
+namespace X 
+{
+	public class Y 
+	{
+		 Y(String test) 
+		{
+		}
+		static void Main()
+		{
+		}
+
+	}
+}
+
+////test2.cs:
+
+
+using System;
+using X;
+
+class T : Y 
+{
+	public T(String test, String test1) : base(test) 
+	{
+	}
+}
+
+
+
+
+Steps to reproduce the problem:
+1. mcs /t:library test1.cs
+2. mcs /t:library /r:test1.dll test2.cs
+3. 
+
+Actual Results:
+error CS0112:'X.Y.Y' is inaccessible due to its protection level
+
+Expected Results:
+error CS0122: 'X.Y.Y(string)' is inaccessible due to its protection level
+
+How often does this happen? 
+always
+
+Additional Information: