Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs1686.cs
1 // CS1686: Local variable or parameter `str' cannot have their address taken and be used inside an anonymous method or lambda expression
2 // Line: 11
3 // Compiler options: -unsafe
4
5 using System;
6
7 unsafe struct S
8 {
9         public fixed int i [10];
10 }
11
12 class C
13 {
14         static void Main ()
15         {
16                 unsafe {
17                         S str;
18                         Func<int> e = () => str.i [3];
19                 }
20         }
21 }