summaryrefslogtreecommitdiff
path: root/tests/src/Loader/classloader/regressions/dev10_897464/dev10_897464.cs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/src/Loader/classloader/regressions/dev10_897464/dev10_897464.cs')
-rw-r--r--tests/src/Loader/classloader/regressions/dev10_897464/dev10_897464.cs43
1 files changed, 43 insertions, 0 deletions
diff --git a/tests/src/Loader/classloader/regressions/dev10_897464/dev10_897464.cs b/tests/src/Loader/classloader/regressions/dev10_897464/dev10_897464.cs
new file mode 100644
index 0000000000..7f3df9ca99
--- /dev/null
+++ b/tests/src/Loader/classloader/regressions/dev10_897464/dev10_897464.cs
@@ -0,0 +1,43 @@
+// Licensed to the .NET Foundation under one or more agreements.
+// The .NET Foundation licenses this file to you under the MIT license.
+// See the LICENSE file in the project root for more information.
+
+using System;
+
+/// <summary>
+/// Regression test case for Dev10 897464 bug: Assemblies that contain global values will work with .NET 2.0 but fail with a BadImageFormat exception on .NET 4.0
+/// </summary>
+class Program
+{
+ static Int32 Main()
+ {
+ Program p = new Program();
+
+ if (p.Run())
+ {
+ Console.WriteLine("PASS");
+ return 100;
+ }
+ else
+ {
+ Console.WriteLine("FAIL");
+ return -1;
+ }
+ }
+
+ public Boolean Run()
+ {
+ try
+ {
+ var v = Test.MyEnum.Zero;
+ Console.WriteLine(v);
+ }
+ catch (Exception ex)
+ {
+ Console.WriteLine("Got unexpected error: " + ex);
+ return false;
+ }
+
+ return true;
+ }
+}