blob: e717b648bf06a8f1e9e7c4dae5b7ade6190b88e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
// Line: 13
using System;
class MyAttribute : Attribute
{
public MyAttribute (object s)
{
}
}
[My (decimal.MaxValue)]
class X
{
}
|