TaskAwaiter from CoreFX
[mono-project.git] / mcs / errors / cs0182-11.cs
blobe717b648bf06a8f1e9e7c4dae5b7ade6190b88e8
1 // CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2 // Line: 13
4 using System;
6 class MyAttribute : Attribute
8 public MyAttribute (object s)
13 [My (decimal.MaxValue)]
14 class X