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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0619-11.cs
blob
4edc4b817e07dc3900817879cec2494c3155ac73
1
// cs0619-11.cs: `I' is obsolete: `Do not use it.'
2
// Line: 15
3
4
using
System
;
5
6
[
Obsolete
(
"Do not use it."
,
true
)]
7
interface
I
8
{
9
}
10
11
class
A
12
{
13
}
14
15
class
C
:
A
,
I
16
{
17
}