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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0182-5.cs
blob
d6d00efb0321c536bed6fc281191adefe528ef31
1
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2
// Line: 4
3
4
[
A
(
false
?
new object
() :
null
)]
5
class
AAttribute
:
System
.
Attribute
6
{
7
public
AAttribute
(
object value
)
8
{
9
}
10
}