summaryrefslogtreecommitdiff
path: root/tests/src/JIT/Regression/CLR-x86-EJIT/V1-M09.5-PDC/b14426/b14426.cs
blob: 1e6ad4862899c2cbbbaaa35421b19960eb8651f7 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// 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.Diagnostics;
namespace SetIPTest
{
    internal class SetIP
    {
        public SetIP()
        {
            m_count++;
        }


        public static void F()
        {
            String s;
            double d;

            if (m_variety != null)
                _Initialize();


            try {
                s = m_variety[MAX].ToString();
            }
            catch (Exception) {
                Object obj;


                obj = new SetIP();
                m_variety[(MAX - 1)] = (SetIP)obj;
            }
            finally {
                int index = 0;


                for (; index < m_count; index++) {
                    if ((index >= 0) && (index < (MAX - 1))) {
                        if (m_variety[index] != null)
                            s = m_variety[index].ToString(); ;
                    }
                    else
                        break;
                }
            }

            int i4 = 1;
            float r4 = 2.0F;

            d = ((i4 + r4) + 3.0);
        }


        public static int Main(String[] argv)
        {
            Console.WriteLine("Entering Main of SetIP");

            if (Debugger.IsAttached == true)
                Debugger.Break();


            SetIP.F();

            if (Debugger.IsAttached == true)
                Debugger.Break();

            Console.WriteLine("Leaving Main of SetIP");
            return 100;
        }

        private static void _Initialize()
        {
            for (int i = 0; i < (MAX - 1); i++) {
                if ((i >= 0) && (i < (MAX - 1)))
                    m_variety[i] = new SetIP();
            }
        }

        public static int m_count = 0;
        private const int MAX = 5;
        public static SetIP[] m_variety = new SetIP[MAX];
    }
}