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
2010-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs1066.cs
blob
128684e639661ed2c92988d69c00e5fe36ba30ba
1
// CS1066: The default value specified for optional parameter `i' will never be used
2
// Line: 6
3
// Compiler options: -warnaserror -langversion:future
4
5
public class
C
6
{
7
public int this
[
int
i
=
1
] {
8
set
{}
9
}
10
}