Welcome to mirror list, hosted at ThFree Co, Russian Federation.

test-257.cs « tests « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d095550c1f60faea2997d8550b59977ca5258b4b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class X {
        public static void Main ()
        {
                int a;

                call (out a);
        }

        static void call (out int a)
        {
                while (true){
                        try {
                                a = 1;
                                return ;
                        } catch {
                        }
                }
        }
}