cleol
[mcs.git] / errors / cs0208-3.cs
blobbdc823642d7c14d15d7548af8428a8e44d25546e
1 // cs0208-3.cs: Cannot take the address of, get the size of, or declare a pointer to a managed type `Foo.P'
2 // Line: 18
3 // Compiler options: -unsafe
5 public unsafe class Foo
7 public class P
9 public P* GetEnumerator ()
11 return null;
15 public static void Main ()
17 P o = new P ();
18 foreach (P p in o)