summaryrefslogtreecommitdiff
path: root/mcs/errors/cs1982-2.cs
blob: b57f1f534f41a578ef5020cc3e4d0463dfd964f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS1982: An attribute argument cannot be dynamic expression
// Line: 6

using System;

[A((dynamic) null)]
public class A : Attribute
{
	public A (Type arg)
	{
	}
}