summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b102615/test1.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b102615/test1.cs')
-rw-r--r--tests/src/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b102615/test1.cs54
1 files changed, 54 insertions, 0 deletions
diff --git a/tests/src/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b102615/test1.cs b/tests/src/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b102615/test1.cs
new file mode 100644
index 0000000000..b3eb664b3f
--- /dev/null
+++ b/tests/src/JIT/Regression/VS-ia64-JIT/V1.2-Beta1/b102615/test1.cs
@@ -0,0 +1,54 @@
+// Copyright (c) Microsoft. All rights reserved.
+// Licensed under the MIT license. See LICENSE file in the project root for full license information.
+//
+
+using System;
+
+struct S
+{
+ public Object O1;
+ public Object O2;
+}
+
+class C
+{
+ public int i;
+ public static S s1;
+
+ public C()
+ {
+ s1.O1 = "Hello";
+ s1.O2 = "World";
+ }
+}
+
+class Test
+{
+ public static int Main()
+ {
+ test1();
+ test2();
+ return 100;
+ }
+
+ public static void test1()
+ {
+ C c = new C();
+
+ foo(C.s1);
+ }
+
+ public static void test2()
+ {
+ C c = new C();
+ S s = C.s1;
+
+ foo(s);
+ }
+
+ public static void foo(S s)
+ {
+ Console.WriteLine(s.O1);
+ Console.WriteLine(s.O2);
+ }
+} \ No newline at end of file