Update mcs/class/System.Core/System/TimeZoneInfo.cs
[mono.git] / mcs / tests / gtest-357.cs
1 class C <T> where T : new ()
2 {
3 }
4
5 class D <U> : C<U> where U : struct
6 {
7 }
8
9 class X
10 {
11         static void Main ()
12         {
13         }
14 }