[mcs] C# 7 tuple (foundation only).
[mono.git] / mcs / errors / cs1666.cs
1 // CS1666: You cannot use fixed size buffers contained in unfixed expressions. Try using the fixed statement
2 // Line: 11
3 // Compiler options: -unsafe
4
5 public unsafe struct S
6 {
7     fixed char test_1 [128];
8         
9     public void Test ()
10     {
11         test_1 [55] = 'g';
12     }
13 }