11 public A (object value)
16 public Type Value { get; set; }
19 [A (Value
= typeof (S
*))]
24 [A (typeof (ushort**))]
27 public static int Main ()
29 A a
= (A
)typeof (Test
).GetCustomAttributes (false)[0];
30 if (a
.Value
!= typeof (ushort**))
33 a
= (A
)typeof (TestProp
).GetCustomAttributes (false)[0];
34 if (a
.Value
!= typeof (S
*))