[Mono-bugs] [Bug 62332][Nor] Changed - mcs can't compile IronPython

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Mon, 2 Aug 2004 22:59: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 jluke@cfl.rr.com.

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

--- shadow/62332	2004-08-02 22:17:26.000000000 -0400
+++ shadow/62332.tmp.1810	2004-08-02 22:59:25.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 62332
 Product: Mono: Compilers
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Normal
 Component: C#
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: jluke@cfl.rr.com               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -68,6 +68,27 @@
 this part.
 
 ------- Additional Comments From jluke@cfl.rr.com  2004-08-02 22:17 -------
 Created an attachment (id=8838)
 patch to add makefiles to IronPython
 
+
+------- Additional Comments From jluke@cfl.rr.com  2004-08-02 22:59 -------
+somewhat smaller test case,
+compile like: mcs t.cs /r:bin/IronMath.dll
+
+using System;
+ 
+class T
+{
+        static void Main ()
+        {
+                IronMath.integer x = 1;
+                double y = 0.1;
+                Console.WriteLine (x + y);
+        }
+}
+
+fails with:
+t.cs(9) error CS0019: Operator + cannot be applied to operands of type
+`IronMath.integer' and `double'
+