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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0619-2.cs
blob
2dfbdb923a660e79cd76c7597e2320098db612b1
1
// cs0619-2.cs: `ObsoleteIface' is obsolete: `Do not use it.'
2
// Line: 12
3
4
using
System
;
5
6
[
Obsolete
(
"Do not use it."
,
true
)]
7
interface
ObsoleteIface
{
8
}
9
10
11
interface
Ex
:
ObsoleteIface
12
{
13
}