[sre] Wrap mono_image_create_token with HANDLE_FUNCTION_{ENTER,RETURN}
[mono-project.git] / mcs / errors / cs0403-4.cs
blob5298bb38a6991154b601d36cb2574911b3ca113b
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 Test<T>
6 public T Null ()
8 return (null);