add ISafeSerializationData
[mcs.git] / tests / test-508.cs
blob17b1415d061626f28d4c49f88062c0df49638fea
1 using System;
3 class OutputParam
5 public static void Main(string[] args)
7 int a;
8 Method(out a);
9 Console.WriteLine(a);
12 public static void Method(out int a)
14 int b;
16 try {
17 b = 5;
18 return;
19 } finally {
20 a = 6;