2010-05-27 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0304.cs
1 // CS0304: Cannot create an instance of the variable type 'T' because it doesn't have the new() constraint
2 // Line: 9
3
4 public class Foo<T>
5 {
6         public T Create ()
7         {
8                 return new T ();
9         }
10 }
11
12 class X
13 {
14         static void Main ()
15         {
16         }
17 }