blob: e270529913d4a272239ad2a0675343167aa2ebaf (
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(typeof (Func<dynamic>))]
public class A : Attribute
{
public A (Type arg)
{
}
}
|