Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0403-2.cs
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
3
4 struct S
5 {
6         public void Foo<T> () where T : struct
7         {
8                 T t = null;
9         }
10
11         static void Main ()
12         { }
13 }