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