[amd64] Save missing register
[mono.git] / mcs / errors / cs0214-15.cs
1 // CS0214: Pointers and fixed size buffers may only be used in an unsafe context
2 // Line: 9
3 // Compiler options: -unsafe
4
5 public class aClass
6 {
7         public struct foo_t
8         {
9                 public fixed char b[16];
10         }
11 }