2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0029-6.cs
blobaaeca67ac89c621b854e362afeccdbaa8544cb45
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 = (T) null;