Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2017-11-27 17:53:31 +0300
committerGitHub <noreply@github.com>2017-11-27 17:53:31 +0300
commit0ebf003339da68bfd75be74a32059c4d7fd8bd92 (patch)
treec5b880d0bbab7f8c6c184163bf458bbde5346175 /src/Test.CoreLib
parent7437e84762a2fb37667dfe38c44563a37a02911b (diff)
Fix building with Test.CoreLib (#5029)
Test.CoreLib has bitrotted again.
Diffstat (limited to 'src/Test.CoreLib')
-rw-r--r--src/Test.CoreLib/src/System/RuntimeExceptionHelpers.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/Test.CoreLib/src/System/RuntimeExceptionHelpers.cs b/src/Test.CoreLib/src/System/RuntimeExceptionHelpers.cs
index f30bb0647..7f57a67d0 100644
--- a/src/Test.CoreLib/src/System/RuntimeExceptionHelpers.cs
+++ b/src/Test.CoreLib/src/System/RuntimeExceptionHelpers.cs
@@ -115,5 +115,10 @@ namespace System
if (ex == null)
FailFast("Exceptions must derive from the System.Exception class");
}
+
+ [RuntimeExport("OnFirstChanceException")]
+ internal static void OnFirstChanceException(object e)
+ {
+ }
}
}