2010-05-31 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0208-2.cs
blob4555a044f09e86c67bdd852e6af1963adec5d375
1 // cs0208-2.cs: Cannot take the address of, get the size of, or declare a pointer to a managed type `cs208.Foo'
2 // Line: 20
3 // Compiler options: -unsafe
5 namespace cs208
7 public class Foo
11 public class Bar
13 unsafe static void Main ()
15 Foo f = new Foo ();
16 Foo *s = &f;