[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs0208-7.cs
1 // CS0208: 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
4
5 struct foo {
6         public delegate void bar (int x);
7         public bar barf;
8 }
9
10 unsafe class t {
11         static void Main () {
12                 foo *f = null;
13         }
14 }