2010-06-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mono / tests / bug-473482.2.cs
blob308782a090562587a2b19f21b724da8266654647
1 using System;
3 public class Program
5 static void Main()
7 try
9 new Foo<object>(0, 0);
11 catch (Exception ex)
13 var t = ex.StackTrace;
18 public class Foo<T> : FooBase
20 int i;
21 int ii;
23 public Foo(int i, int ii)
25 this.i = i;
26 this.ii = ii;
27 this.iii = 0;
28 throw new Exception();
32 public abstract class FooBase
34 protected int iii;