[bcl] Update BCL Linked Size
[mono-project.git] / mcs / errors / cs0208-19.cs
blob82b0f4395e3f0d77e10d8c993c75c06a5933d832
1 // CS0208: Cannot take the address of, get the size of, or declare a pointer to a managed type `CS208.Foo'
2 // Line: 17
3 // Compiler options: -unsafe
5 namespace CS208
7 public struct Foo
9 public string PP { get; set; }
12 public class Bar
14 unsafe static void Main ()
16 Foo f = new Foo ();
17 void *s = &f;