2010-04-07 Jb Evain <jbevain@novell.com>
[mcs.git] / tests / gtest-443.cs
blob091b0f27780a8bd025a67623df702d65798230fb
1 using System;
3 class C
5 static void M<T> () where T : Exception, new ()
7 try {
8 throw new T ();
9 } catch (T ex) {
13 public static int Main ()
15 M<ApplicationException> ();
16 return 0;