2003-04-29 Atsushi Enomoto <ginga@kit.hi-ho.ne.jp>
[mono.git] / mcs / errors / cs0208-2.cs
1 // cs0208.cs: Cannot take the address or size of a variable of a managed type ('cs208.Foo')
2 // Line: 19
3
4 namespace cs208
5 {
6         public class Foo
7         {
8         }
9
10         public class Bar
11         {
12                 unsafe static void Main ()
13                 {                       
14                         Foo f = new Foo ();
15                         Foo *s = &f;
16                 }
17         }
18 }