fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int maxint = 2147483647;
  8. int increased1 = unchecked(maxint + 1);
  9. Console.WriteLine("increased1 = {0}", increased1);
  10. int increased2 = checked(maxint + 1);
  11. Console.WriteLine("this will never be reached");
  12. }
  13. }
Runtime error #stdin #stdout 0.03s 36536KB
stdin
Standard input is empty
stdout
increased1 = -2147483648