summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/JitBlue/GitHub_11689/GitHub_11689.cs
blob: 3d8428c928cc6d1537536237728b2c631a4de580 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
// 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.

// Repro case for a bug involving hoisting of static field loads out of
// loops and (illegally) above the corresponding type initializer calls.

using System.Runtime.CompilerServices;

namespace N
{
    struct WrappedInt
    {
        public int Value;

        public static WrappedInt Twenty = new WrappedInt() { Value = 20 };
    }
    public static class C
    {
        [MethodImpl(MethodImplOptions.AggressiveInlining)]
        static int unwrap(WrappedInt wi) => wi.Value;

        [MethodImpl(MethodImplOptions.NoInlining)]
        static int foo(int s, int n)
        {
            for (int i = 0; i < n; ++i)
            {
                s += unwrap(WrappedInt.Twenty);  // Loading WrappedInt.Twenty must happen after calling the cctor
            }

            return s;
        }

        public static int Main(string[] args)
        {
            return foo(20, 4);
        }
    }
}