[Mono-bugs] [Bug 387875] multiline warnings are not errors

bugzilla_noreply at novell.com bugzilla_noreply at novell.com
Wed Aug 13 13:08:03 EDT 2008


https://bugzilla.novell.com/show_bug.cgi?id=387875

User atsushi at ximian.com added comment
https://bugzilla.novell.com/show_bug.cgi?id=387875#c1


Atsushi Enomoto <atsushi at ximian.com> changed:

           What    |Removed                                         |Added
----------------------------------------------------------------------------
                 CC|                                                |atsushi at ximian.com
             Status|NEW                                             |RESOLVED
         Resolution|                                                |FIXED




--- Comment #1 from Atsushi Enomoto <atsushi at ximian.com>  2008-08-13 11:08:03 MDT ---
This does not reproduce (at least anymore). Here's a sample code that asserts
it does *not* reproduce:


using System;
using System.CodeDom;
using System.CodeDom.Compiler;
using Microsoft.CSharp;

public class Test
{
        public static void Main ()
        {
                new CSharpCodeProvider ().CompileAssemblyFromDom (
                        new CompilerParameters (),
                        new CodeSnippetCompileUnit (src));
        }

        static string src = @"

public class Foo
{
        public static void Main () {}
        public void X () {}
}

public class Bar : Foo
{
        public int X () { return 0; }
}
                ";
}


-- 
Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the QA contact for the bug.
You are the assignee for the bug.


More information about the mono-bugs mailing list