12 lines
172 B
C#
Raw Normal View History

using System;
public class Test
{
const int A = unchecked ((int)0x80000000);
const int B = checked ((int)0x08000000);
public static void Main ()
{
}
}