[xbuild] Add new reserved properties $(MSBuildThisFile*).
[mono.git] / mcs / errors / dcs1982-5.cs
1 // CS01982: 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 }