fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. object o = (short)42;
  8. int i = (int)o;
  9. Console.WriteLine("{0}", i);
  10. }
  11. }
  12.  
Runtime error #stdin #stdout #stderr 0.02s 36320KB
stdin
Standard input is empty
stdout
Standard output is empty
stderr
Unhandled Exception: System.InvalidCastException: Cannot cast from source type to destination type.
  at Test.Main () [0x00000] in <filename unknown>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.InvalidCastException: Cannot cast from source type to destination type.
  at Test.Main () [0x00000] in <filename unknown>:0