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