12 lines
172 B
C#
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 ()
|
||
|
{
|
||
|
}
|
||
|
}
|