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 [EMAIL PROTECTED] http://bugzilla.ximian.com/show_bug.cgi?id=82064 --- shadow/82064 2007-07-11 02:28:29.000000000 -0400 +++ shadow/82064.tmp.1400 2007-07-11 02:28:29.000000000 -0400 @@ -0,0 +1,39 @@ +Bug#: 82064 +Product: Mono: Compilers +Version: unspecified +OS: +OS Details: +Status: NEW +Resolution: +Severity: +Priority: Major +Component: C# +AssignedTo: [EMAIL PROTECTED] +ReportedBy: [EMAIL PROTECTED] +QAContact: [EMAIL PROTECTED] +TargetMilestone: --- +URL: +Cc: +Summary: mcs generates "invalid IL" for using statements + +The resulting binary compiled by mcs or gmcs causes InvalidProgramException +under .NET. + +-------- +using System; +using System.IO; + +namespace XmlnsAttributeSample +{ + public class XmlnsAttribTester + { + static public void Main (string [] args) + { + using (StringWriter stringWriter = new StringWriter ()) + { + } + } + } +} + +(Not sure if it is .NET bug or mcs/gmcs bug though.) _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
