2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0417.cs
blob2396ef63690952b1818ed4985d6805baaf457b05
1 // CS0417.cs: `T': cannot provide arguments when creating an instance of a variable type
2 // Line: 9
4 public class Foo<T>
5 where T : new ()
7 public T Create ()
9 return new T (8);
13 class X
15 static void Main ()