summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b60600/b60600.cs
blob: 021ff62a3c50447036d1702326192570ccc65174 (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
// 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;
internal unsafe class bug1
{
    public struct VT1
    {
        public double a;
    }
    public static double f(double* a0)
    {
        return *a0;
    }
    public static int Main()
    {
        VT1 vt = new VT1();
        double* a0 = stackalloc double[1];
        *a0 = 100;
        int[,,] arr3d = new int[5, 20, 4];
        arr3d[4, 6, 3] = 5;
        double val = f(a0);
        return (int)val;
    }
}