New test.
[mono.git] / mcs / errors / gcs0029-2.cs
1 // CS0029: Cannot implicitly convert type `T' to `int*'
2 // Line : 8
3 // Compiler options: -unsafe\r
4 \r
5 class T {\r
6         static unsafe int Main ()\r
7         {\r
8                 int *a = default(T);\r
9         }\r
10 }\r