cleol
[mcs.git] / errors / cs0655.cs
blob5ac8454c24909c9d22b5d9289a5db0181cff83a8
1 // cs0655.cs: `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