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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0055.cs
blob
8995b5d7b36a8349a45d4274d7056f53cafbeb2f
1
// cs0055.cs: Inconsistent accessibility: parameter type `ErrorCS0055' is less accessible than indexer `Foo.this[ErrorCS0055]'
2
// Line: 11
3
4
using
System
;
5
6
class
ErrorCS0055
{
7
public
ErrorCS0055
() {}
8
}
9
10
public class
Foo
{
11
public int this
[
ErrorCS0055 e
] {
12
get
{ return 5; }
13
}
14
15
public static void
Main
() {
16
}
17
}
18