2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0403-2.cs
blobdda9fd93d566cb152c395fb15225f388ba0ecbe6
1 // CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
2 // Line: 8
4 struct S
6 public void Foo<T> () where T : struct
8 T t = null;
11 static void Main ()
12 { }