This commit was manufactured by cvs2svn to create branch 'mono-1-0'.
[mono.git] / mcs / errors / cs0214-3.cs
1 // cs0214: Pointer can only be used in unsafe context
2 // Line: 13
3 // Compiler options: -unsafe
4
5 struct X {
6         static unsafe void *a ()
7                 {
8                         return null;
9                 }
10
11         static void Main ()
12                 {
13                         a ();
14                 }
15         
16 }