fork download
  1. using System;
  2.  
  3. public class Test
  4. {
  5. public static void Main()
  6. {
  7. Console.WriteLine(test());
  8.  
  9. }
  10.  
  11. private static int test()
  12. {var a = 1;
  13. try
  14. {
  15. return a;
  16. }
  17. finally
  18. {
  19. a = 4;
  20. }
  21. }
  22. }
Success #stdin #stdout 0.04s 26312KB
stdin
Standard input is empty
stdout
1