2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs0403-3.cs
blob552e3dfb22d9423123edeecf3efb68bf7f7e8fd8
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 class X
6 public static T CreateMethod<T> ()
8 return (T)null;