[mcs] Allow properties and indexers of by-ref values to be set without setter
[mono.git] / mcs / tests / gtest-fixedbuffer-04.cs
1 // Compiler options: -unsafe
2
3 public class aClass
4 {
5         public unsafe struct foo_t
6         {
7                 public fixed char b[16];
8         }
9         
10         public static unsafe void Main(string[] args)
11         {
12                 foo_t bar;
13                 char* oo = bar.b;
14         }
15 }