* HttpChannel.cs, HttpClientChannel.cs, HttpHelper.cs, HttpServer.cs,
[mono.git] / mcs / errors / cs0214-3.cs
1 struct X {
2         static unsafe void *a ()
3                 {
4                         return null;
5                 }
6
7         static void Main ()
8                 {
9                         a ();
10                 }
11         
12 }