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-11-17 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0102-4.cs
blob
4731658a4aece9a2d31f885c05d00a512c10f0c9
1
// cs0102-4.cs: The type `ErrorClass' already contains a definition for `Blah'
2
// Line: 7
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 int
Blah
;
12
}