repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0182-11.cs
blob
e717b648bf06a8f1e9e7c4dae5b7ade6190b88e8
1
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2
// Line: 13
3
4
using
System
;
5
6
class
MyAttribute
:
Attribute
7
{
8
public
MyAttribute
(
object
s
)
9
{
10
}
11
}
12
13
[
My
(
decimal
.
MaxValue
)]
14
class
X
15
{
16
}