Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

22 lines
299 B
C#

// CS0310: The type `A' must have a public parameterless constructor in order to use it as parameter `T' in the generic type or method `Foo<T>'
// Line: 20
public class Foo<T>
where T : new ()
{
}
class A
{
private A ()
{ }
}
class X
{
static void Main ()
{
object o = new Foo<A> ();
}
}