summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48864/b48864.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48864/b48864.cs')
-rw-r--r--tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48864/b48864.cs37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48864/b48864.cs b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48864/b48864.cs
new file mode 100644
index 0000000000..40f28b6e89
--- /dev/null
+++ b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M11-Beta1/b48864/b48864.cs
@@ -0,0 +1,37 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+namespace Test
+{
+ using System;
+
+ class AA
+ {
+ static int Main()
+ {
+ bool b = true;
+ do
+ {
+ try
+ {
+ b = true;
+ do
+ {
+ while (b)
+ return 100;
+ } while (b);
+ }
+ catch (Exception) { }
+ do
+ {
+ long local4 = 32L;
+ do
+ {
+ } while (checked(38L >= local4));
+ } while (b);
+ } while (b);
+ return -1;
+ }
+ }
+}