[ci] Only build the additional profiles on one arch instead of everywhere
[mono-project.git] / mcs / errors / cs0208-7.cs
blob88cf73b71ffa98f970b2a84bc9acf688f2d8d06b
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
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;