fix run-test
[mcs.git] / errors / gcs0029-2.cs
blob91c67b45a3f2b4a2d259402a5652821120d63e15
1 // CS0029: Cannot implicitly convert type `T' to `int*'
2 // Line : 8
3 // Compiler options: -unsafe
5 class T {
6 static unsafe void Main ()
8 int *a = default(T);