* HttpWebRequest.cs: When retrying a POST request after an authentication
[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 }