[Mono-bugs] [Bug 36722][Blo] New - System.Drawing.Point type not found

bugzilla-daemon@rocky.ximian.com bugzilla-daemon@rocky.ximian.com
Tue, 14 Jan 2003 14:07:30 -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 incubus@shrimpwars.be.

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

--- shadow/36722	Tue Jan 14 14:07:30 2003
+++ shadow/36722.tmp.2348	Tue Jan 14 14:07:30 2003
@@ -0,0 +1,65 @@
+Bug#: 36722
+Product: Mono/MCS
+Version: unspecified
+OS: Debian Woody
+OS Details: 
+Status: NEW   
+Resolution: 
+Severity: 
+Priority: Blocker
+Component: Misc
+AssignedTo: mono-bugs@ximian.com                            
+ReportedBy: incubus@shrimpwars.be               
+QAContact: mono-bugs@ximian.com
+TargetMilestone: ---
+URL: 
+Cc: 
+Summary: System.Drawing.Point type not found
+
+==============================================
+Description of Problem:
+==============================================
+When trying to compile a .cs file using System.Drawing.Point I get the 
+following error:
+
+MovingUnit.cs(26) error CS0246: Cannot find type `Point'
+
+
+==============================================
+Steps to reproduce the problem:
+==============================================
+1. create a file like this:
+
+--------------------------------------------------------
+using System;
+using System.Drawing;
+
+namespace tester
+{
+
+        public class testClass
+        {
+        private Point myPoint;
+        }
+
+}
+--------------------------------------------------------
+
+2. mcs tester.cs
+
+==============================================
+Actual Results:
+==============================================
+tester.cs(9) error CS0246: Cannot find type `Point'
+Compilation failed: 1 error(s), 0 warnings
+
+
+==============================================
+Expected Results:
+==============================================
+a successful compilation :)
+
+==============================================
+How often does this happen? 
+==============================================
+Always