summaryrefslogtreecommitdiff
path: root/tests/src/JIT/opt/Inline/Inline_SideAffects.cs
blob: 82fa35164098aebe3e0b3470d189994642e6f1c4 (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//

using System;
using System.Collections.Generic;
using System.Text;

namespace Inline_SideAffects
{
    class Inline_SideAffects
    {
        static int i = 0;
        static bool Foo_Inline()
        {
            i++;

            return true;
        }

        static bool Bar_Inline()
        {
            i += 3;
            return false;
        }
        static int Main(string[] args)
        {

            if ((Foo_Inline()) && (Bar_Inline()))
            {
                // Should not come there.
                goto Fail;
            }
            else
            {
                // It should come here.
                if (i != 4) goto succeeded;
            }

            i = 0;

            if ((Bar_Inline()) && (Foo_Inline()))
            {
                goto Fail;
            }
            else
            {
                // It should come here.
                if (i != 1) goto succeeded;
            }

        succeeded:
            Console.WriteLine("Test Passed.");
            return 100;

        Fail:
            Console.WriteLine("Test Failed");
            return 101;


        }
    }
}