w32file-unix.c: In function 'mono_w32file_get_file_size':
[mono-project.git] / mcs / errors / cs0403.cs
blob3e73bc7dd0458dca7aa7cda9d09e24577f61e6be
1 // CS0403: Cannot convert null to the type parameter `T' because it could be a value type. Consider using `default (T)' instead
2 // Line: 7
3 class Test<T>
5 public T Null ()
7 return null;
11 class X
13 static void Main ()
14 { }