[Mono-bugs] [Bug 58863][Nor] Changed - xsp does not work with -O=inline

bugzilla-daemon@bugzilla.ximian.com bugzilla-daemon@bugzilla.ximian.com
Sun, 23 May 2004 10:56:03 -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 vargaz@freemail.hu.

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

--- shadow/58863	2004-05-22 15:44:01.000000000 -0400
+++ shadow/58863.tmp.23800	2004-05-23 10:56:03.000000000 -0400
@@ -1,14 +1,14 @@
 Bug#: 58863
 Product: Mono: Runtime
 Version: unspecified
-OS: 
+OS: unknown
 OS Details: 
 Status: NEW   
 Resolution: 
-Severity: 
+Severity: Unknown
 Priority: Normal
 Component: misc
 AssignedTo: mono-bugs@ximian.com                            
 ReportedBy: vargaz@freemail.hu               
 QAContact: mono-bugs@ximian.com
 TargetMilestone: ---
@@ -21,6 +21,35 @@
 
 Server error in '/' application
 Configuration error. Language not supported: c#
 Description: Error processing request.
 
 Error Message: HTTP 500. Configuration error. Language not supported: c#
+
+------- Additional Comments From vargaz@freemail.hu  2004-05-23 10:56 -------
+Here is a small testcase:
+
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+using System;
+using System.IO;
+using System.CodeDom.Compiler;
+
+class Test
+{
+	public object obj;
+
+	public static int Main ()
+	{
+		Test test = new Test ();
+
+		Type t = Type.GetType ("Microsoft.CSharp.CSharpCodeProvider, System,
+Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089");
+		test.obj = Activator.CreateInstance (t) as CodeDomProvider;
+		Console.WriteLine ("RESULT: " + test.obj);
+
+		return 0;
+	}
+}
+<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<
+
+It prints a different output with and without -O=inline.
+