a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
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 ()
|
|
{
|
|
}
|
|
}
|