summaryrefslogtreecommitdiff
path: root/tests/src/JIT/jit64/gc/misc/9param.cs
blob: 0fabcff7e175942987d280e90102eefc04c525c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

using System;

class T
{
    public static int Main()
    {
        string s1 = "Hello World";

        foo(1, 2, 3, 4, 5, 6, 7, 8, s1);

        return 100;
    }

    public static void foo(int i1, int i2, int i3, int i4, int i5, int i6, int i7, int i8, string s9)
    {
        Console.WriteLine(s9);
    }
}