2003-12-25 Sebastien Pouliot <spouliot@videotron.ca>
[mono.git] / mcs / errors / cs0214-3.cs
1 // Compiler options: -unsafe
2
3 struct X {
4         static unsafe void *a ()
5                 {
6                         return null;
7                 }
8
9         static void Main ()
10                 {
11                         a ();
12                 }
13         
14 }