[corlib] Make Marshal.BufferToBSTR(Array, int) non-public again (#5670)
[mono.git] / mcs / errors / cs0029-6.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 = (T) null;
9         }
10 }