Compile errors for overload methods of Assert in EUnit

public class MyTest : Test{
    void test(){
        string a = "a";
        string b = "b";
        // Compile error for .NET:
        // (E110) Ambiguous call to overloaded method "AreEqual"
        // (E110) Ambiguous call to overloaded method "AreNotEqual"
        Assert.AreEqual(a,b,false,"msg");
        Assert.AreNotEqual(a,b,false,"msg");
    }

    void test2(){
        double a = 1;
        double b = 2;
        // Compile error for Cocoa:
        // (E44) No member "ToString" on type "Double"
        Assert.AreEqual(a,b);
    }
}

Elements 8.2.88.1835
Test Project: ElementTest.zip (202.8 KB)

Thanks, logged as bugs://73123

bugs://73123 got closed with status fixed.

On 8.2.88.1857, the .NET issue is fixed, but the Cocoa issue is still reproduced.

bugs://73123 got reopened.

bugs://73123 got closed with status cannotrepro.