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


using System;
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.

namespace DefaultNamespace
{
    internal class X
    {
        public virtual int Blah(int what)
        {
            try
            {
                throw new Exception();
            }
            catch (Exception)
            {
            }
            finally
            {
            }


            return -1;
        }


        public static int Main(String[] argv)
        {
            int i = 0;
            X x = new X();


            i = x.Blah(1);
            return 100;
        }
    }
}