summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14673/b14673.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14673/b14673.cs')
-rw-r--r--tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14673/b14673.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14673/b14673.cs b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14673/b14673.cs
new file mode 100644
index 0000000000..bff4f8e917
--- /dev/null
+++ b/tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14673/b14673.cs
@@ -0,0 +1,28 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+namespace DefaultNamespace
+{
+ using System;
+
+ public class Bug
+ {
+ public void runTest(Object var2)
+ {
+ int iTemp = 5;
+ Object VarResult = (iTemp);
+
+ if ((int)VarResult == 5)
+ Console.WriteLine("Test paSsed");
+ else
+ Console.WriteLine("Test FAiLED");
+ }
+ public static int Main(String[] args)
+ {
+ Bug oCbTest = new Bug();
+ oCbTest.runTest((3));
+ return 100;
+ }
+ }
+}