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
Warnings cleanup
[mcs.git]
/
errors
/
cs0619-12.cs
blob
453b2dc64c198b2d86a90b0dd882d0e350254d0f
1
// cs0619-12.cs: `I' is obsolete: `'
2
// Line: 13
3
4
using
System
;
5
6
[
Obsolete
(
""
,
true
)]
7
interface
I
8
{
9
}
10
11
class
A
12
{
13
int this
[
I index
] {
14
get
{
15
return
15
;
16
}
17
}
18
}