NETMF / llilum

Development Platform for MSIL and UWP apps targeting Micro Controllers. Part of the .NET Micro Framework family.
Other
159 stars 52 forks source link

Test ValueTestClass7 fails #176

Open lt72 opened 8 years ago

lt72 commented 8 years ago
    public class ValueTestClass7
    {
        public static bool testMethod()
        {
            ValueTestClass7_Struct MS = new ValueTestClass7_Struct();
            ValueTestClass7_Struct MS2;

            MS.MyInt = 3;
            MS2 = MS;
            MS.MyInt = 4;

            if (MS2.MyInt == 3)
            {
                return true;
            }
            else
            {
                return false;
            }
        }
    }