repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-02-15 Jonathan Chambers <joncham@gmail.com>
[mcs.git]
/
errors
/
cs0720.cs
blob
67d2f2d5bd4f5c15d63504fb19b3da40926de18d
1
// cs0720.cs: `StaticClass.this[int]': cannot declare indexers in a static class
2
// Line: 5
3
4
static class
StaticClass
{
5
public int this
[
int
arg
]
{ set {}
}
6
}