Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0208-16.cs
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `Foo'
2 // Line: 11
3 // Compiler options: -unsafe
4
5 public unsafe partial struct Foo
6 {
7 }
8
9 public unsafe partial struct Foo
10 {
11         public Foo *foo;
12         string x;
13 }
14
15