Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0208-2.cs
1 // CS0208: 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
4
5 namespace CS208
6 {
7         public class Foo
8         {
9         }
10
11         public class Bar
12         {
13                 unsafe static void Main ()
14                 {                       
15                         Foo f = new Foo ();
16                         Foo *s = &f;
17                 }
18         }
19 }