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: 49cd84ebdaff64af604c2f2ccdc509101e1e8d2c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// cs0655.cs: 'd' is not a valid named attribute argument because its type is not valid attribute type
// Line: 11

using System;

class TestAttribute : Attribute
{
   public decimal d;
}

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