[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs1666.cs
blob4daecdd1486610b293bc5431cd5105ecb7856e7f
1 // CS1666: You cannot use fixed size buffers contained in unfixed expressions. Try using the fixed statement
2 // Line: 11
3 // Compiler options: -unsafe
5 public unsafe struct S
7 fixed char test_1 [128];
9 public void Test ()
11 test_1 [55] = 'g';