Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / gtest-443.cs
1 using System;
2
3 class C
4 {
5         static void M<T> () where T : Exception, new ()
6         {
7                 try {
8                         throw new T ();
9                 } catch (T ex) {
10                 }
11         }
12
13         public static int Main ()
14         {
15                 M<ApplicationException> ();
16                 return 0;
17         }
18 }