New tests, and fixed buffer mcs -> gmcs switch.
[mono.git] / mcs / errors / gcs0214.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 }