summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0655.cs
blob: 319292a60bd37f5c84c90eb3cfa2429e7d278be9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// CS0655: `d' is not a valid named attribute argument because it is not a valid attribute parameter type
// Line: 11

using System;

class TestAttribute : Attribute
{
   public decimal d;
}

[Test (d = 44444)]
class C
{
}