2010-01-20 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / gcs0451.cs
1 // CS0451: The `new()' constraint cannot be used with the `struct' constraint
2 // Line: 8
3
4 class C
5 {
6         public static void Foo<T>()  where T : struct, new ()
7         {
8         }
9 }