summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M12-Beta2/b37646/b37646.cs
blob: faa0146f826c8818f0ce69e44688d9c01f4e0053 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// 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.
//

namespace Test
{
    using System;

    class BB
    {
        static void Static2(__arglist) { }

        static bool[] Static3(ref int param1, uint[] param2, ref double param3,
            object param4, ref float[] param5, ref object[] param6) { return null; }

        static int Main() { Static2(__arglist()); return 100; }
    }
}