(DISTFILES): Comment out a few missing files.
[mono-project.git] / mcs / errors / gcs0304.cs
blob4eb1d929da7260fcaa945d1bbc7ca6397908f118
1 // CS0304: Cannot create an instance of the variable type 'T' because it
2 // doesn't have the new() constraint
3 // Line: 9
5 public class Foo<T>
7 public T Create ()
9 return new T ();
13 class X
15 static void Main ()