summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b06680/b06680.cs
blob: b23747713892cbd39c0da4334e4254431f41b432 (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.
//

namespace DefaultNamespace
{
    //@BEGINRENAME; Verify this renames
    //@ENDRENAME; Verify this renames
    using System;

    class AppStarter
    {
        private static int n = 0;

        public static int Main(String[] args)
        {
            n = 1;
            Console.WriteLine("n = " + n);
            return 100;
        }
    };
};