In mcs:
[mono.git] / mcs / errors / crash0208-9.cs
1 // cs0208-9.cs: Cannot declare a pointer to a managed type ('Foo')
2 // Line: 7
3 // Compiler options: -t:library -unsafe
4
5 public unsafe struct Foo
6 {
7         public Foo *foo;
8         string x;
9 }
10
11