[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[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 }