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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0182-15.cs
blob
b1617963a86d216a3c6cf4248fc0ea9a3d60f740
1
// CS0182: An attribute argument must be a constant expression, typeof expression or array creation expression
2
// Line: 8
3
4
using
System
.
Runtime
.
CompilerServices
;
5
6
public class
C
7
{
8
[
IndexerName
(
"1"
+
2
)]
9
public string this
[
int
i
] {
10
set
{ }
11
}
12
}