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

using System;
internal struct AA
{
    private static int Main()
    {
        bool local3 = false;
        do
        {
            while (local3) { }
        } while (local3);
        return 100;
    }
}