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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0082-7.cs
blob
7be26724d518ae5731a523a6947332ca8f4e436b
1
// CS0082: A member `ErrorClass.get_Blah(int)' is already reserved
2
// Line: 8
3
4
using
System
.
Runtime
.
CompilerServices
;
5
class
ErrorClass
{
6
[
IndexerName
(
"Blah"
)]
7
public int this
[
int
a
] {
8
get
{ return 1; }
9
}
10
11
public void
get_Blah
(
int
b
) {}
12
13
public static void
Main
()
14
{
15
}
16
}