* LabelInfo.cs: Move this type outside of MethodDef, because other
[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 }