summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-JIT/V1-M10/b06680/b06680.cs
blob: 27fb9200ab2fc2be695034ca1c6c6d2950fa0757 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// 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 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;
        }
    };
};