Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0655.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
{
}