Files
linux-packaging-mono/mcs/errors/cs0401.cs

7 lines
126 B
C#
Raw Normal View History

// CS0401: The `new()' constraint must be the last constraint specified
// Line: 4
class Foo<T> where T : new (), new ()
{
}