summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0401.cs
blob: ac95556b2f5bb7241fde9e64d0c8cde011706a87 (plain)
1
2
3
4
5
6
// CS0401: The `new()' constraint must be the last constraint specified
// Line: 4

class Foo<T> where T : new (), new ()
{
}