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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0102-4.cs
blob
fb189469e504003278c62041328213546c19a1ba
1
// CS0102: 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
}