codeowners update
[mono.git] / mcs / tests / test-508.cs
1 using System;
2
3 class OutputParam
4 {
5     public static void Main(string[] args)
6     {
7          int a;
8          Method(out a);
9          Console.WriteLine(a);
10     }
11
12     public static void Method(out int a)
13     {
14         int b;
15
16         try {
17             b = 5;
18             return;
19         } finally {
20             a = 6;
21         }
22     }
23 }