[Mono-bugs] [Bug 47853][Nor] Changed - invalid CS0246 with using a namespace of another file
bugzilla-daemon@bugzilla.ximian.com
bugzilla-daemon@bugzilla.ximian.com
Mon, 25 Aug 2003 11:01:49 -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 martin@ximian.com.
http://bugzilla.ximian.com/show_bug.cgi?id=47853
--- shadow/47853 2003-08-24 13:23:54.000000000 -0400
+++ shadow/47853.tmp.9000 2003-08-25 11:01:49.000000000 -0400
@@ -1,14 +1,14 @@
Bug#: 47853
Product: Mono/MCS
Version: unspecified
-OS:
+OS: unknown
OS Details:
-Status: NEW
-Resolution:
-Severity:
+Status: RESOLVED
+Resolution: FIXED
+Severity: Unknown
Priority: Normal
Component: Misc
AssignedTo: mono-bugs@ximian.com
ReportedBy: japj@xs4all.nl
QAContact: mono-bugs@ximian.com
TargetMilestone: ---
@@ -61,6 +61,17 @@
When I try to compile them with mcs(0.26) test.cs n1.cs I get a
test.cs(8) error CS0246: Cannot find type `T1'
Compilation failed: 1 error(s), 0 warnings
If I try to compile this with csc it goes ok.
+
+------- Additional Comments From martin@ximian.com 2003-08-25 11:01 -------
+Works fine for me, no matter whether I use
+
+ mcs B.cs C.cs
+
+or
+
+ mcs /target:library B.cs
+ mcs /r:B.dll C.cs
+