summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M09/b14057/b14057.cs
blob: 6c8d85d8a7dc5ac684fb13eff107c1e9176ce267 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

using System;

public class test
{
    static byte by = 13;
    public static int Main(string[] args)
    {
        byte by1 = (byte)(by >> 1);
        byte by2 = (byte)(by >> 1);

        Console.WriteLine(by1);
        Console.WriteLine(by2);
        return 100;
    }
}