2010-06-04 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / gcs1666.cs
blob140777e109dd9303894ee3f1e38a2e74c93f3bd3
1 // cs1666.cs: 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';