Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

12 lines
172 B
C#

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