summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b13330/b13330.cs
blob: 13486b4a9bf002f8858d779cffc2be5cf1331d0c (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
// 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 D
{
    //@BEGINRENAME; Verify this renames
    //@ENDRENAME; Verify this renames
    using System;

    class X
    {
        internal static char f(int x)
        {
            return (char)(x >> 8);
        }

        public static int Main(String[] args)
        {
            f(123);
            return 100;
        }
    }
}