2010-05-25 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs0208-7.cs
blobdee9012076b17c2e61bbd66223742aca21a26f85
1 // cs0208-7.cs: 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
5 struct foo {
6 public delegate void bar (int x);
7 public bar barf;
10 unsafe class t {
11 static void Main () {
12 foo *f = null;