[jit] Fix the saving of the 'cfg->ret_var_set' flag when inlining, it was set to...
[mono.git] / mcs / errors / cs1982-4.cs
1 // CS1982: An attribute argument cannot be dynamic expression
2 // Line: 6
3
4 using System;
5
6 [A(new dynamic [] { 8 })]
7 public class A : Attribute
8 {
9         public A (object arg)
10         {
11         }
12 }