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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs1066.cs
blob
e3dcf75fefc8bbdccd2e1d52363794ebd071824b
1
// CS1066: The default value specified for optional parameter `i' will never be used
2
// Line: 6
3
// Compiler options: -warnaserror
4
5
public class
C
6
{
7
public int this
[
int
i
=
1
] {
8
set
{}
9
}
10
}