[mcs] Reset also all partial parts current-type
[mono-project.git] / mcs / errors / cs1982-3.cs
blob466f87ecd30e01a976bd59c243eb1048e4f93ea5
1 // CS1982: An attribute argument cannot be dynamic expression
2 // Line: 6
4 using System;
6 [A(typeof (dynamic[]))]
7 public class A : Attribute
9 public A (object arg)