2007-10-17 Geoff Norton <gnorton@novell.com>
[mono.git] / mcs / errors / gcs0029-4.cs
1 // CS0029: Cannot implicitly convert type `T' to `int*'\r
2 // Line : 8\r
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