Remove code moved to shared partition
[mono-project.git] / mcs / errors / cs1982-2.cs
blobb57f1f534f41a578ef5020cc3e4d0463dfd964f2
1 // CS1982: An attribute argument cannot be dynamic expression
2 // Line: 6
4 using System;
6 [A((dynamic) null)]
7 public class A : Attribute
9 public A (Type arg)