summaryrefslogtreecommitdiff
path: root/mcs/tests/test-257.cs
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 {
                        }
                }
        }
}