Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs1982-5.cs
1 // CS1982: An attribute argument cannot be dynamic expression
2 // Line: 6
3
4 using System;
5
6 [A(typeof (Func<dynamic>))]
7 public class A : Attribute
8 {
9         public A (Type arg)
10         {
11         }
12 }