Merge pull request #3769 from evincarofautumn/fix-verify-before-allocs
[mono.git] / mcs / errors / cs1716.cs
1 // CS1716: Do not use 'System.Runtime.CompilerServices.FixedBuffer' attribute. Use the 'fixed' field modifier instead
2 // Line: 6
3
4 public class C
5 {
6     [System.Runtime.CompilerServices.FixedBuffer (typeof (int), 1)]
7     public int i;
8 }