public static int TestConversions()
{
int intValue = 42;
long longValue = intValue;
short shortValue = (short)intValue;
return (int)(longValue + shortValue);
}
Hello Admin, I finally find out minimal code to reproduce this problem.
Release configuration.