[mono-api-html] Prettier output using singular and plural forms in sections
[mono-project.git] / mcs / errors / cs0655.cs
blob319292a60bd37f5c84c90eb3cfa2429e7d278be9
1 // CS0655: `d' is not a valid named attribute argument because it is not a valid attribute parameter type
2 // Line: 11
4 using System;
6 class TestAttribute : Attribute
8 public decimal d;
11 [Test (d = 44444)]
12 class C