summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0451.cs
blob: c56634be62dce09c26a446a9ba6417feec22272a (plain)
1
2
3
4
5
6
7
8
9
// CS0451: The `new()' constraint cannot be used with the `struct' constraint
// Line: 6

class C
{
	public static void Foo<T>() where T : struct, new ()
	{
	}
}