Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0029-22.cs
1 // CS0029: Cannot implicitly convert type `T' to `int*'
2 // Line : 8
3 // Compiler options: -unsafe
4
5 class T {
6         static unsafe void Main ()
7         {
8                 int *a = default(T);
9         }
10 }