Add more tests for exceptions (#33)

This commit is contained in:
Patrick Stevens
2025-06-01 20:37:37 +01:00
committed by GitHub
parent 1e4c6f3d32
commit 3c2541c699
6 changed files with 593 additions and 3 deletions

View File

@@ -0,0 +1,24 @@
using System;
namespace HelloWorldApp
{
class Program
{
static int ReallyMain(string[] args)
{
return 10;
}
static int Main(string[] args)
{
try
{
return ReallyMain(args);
}
catch
{
throw;
}
}
}
}