fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. int[] array = new int[1];
  8. array[10] = GetVal();
  9. }
  10.  
  11. static int GetVal()
  12. {
  13. Console.WriteLine("GetVal");
  14. return 0;
  15. }
  16. }
Runtime error #stdin #stdout #stderr 0.01s 134976KB
stdin
Standard input is empty
stdout
GetVal
stderr
Unhandled Exception:
System.IndexOutOfRangeException: Index was outside the bounds of the array.
  at Test.Main () [0x0000f] in <400fc174cd454372a6775bf6c054aae6>:0 
[ERROR] FATAL UNHANDLED EXCEPTION: System.IndexOutOfRangeException: Index was outside the bounds of the array.
  at Test.Main () [0x0000f] in <400fc174cd454372a6775bf6c054aae6>:0