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-03-10 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
cs0619-27.cs
blob
d9143f26f5f3d7e4084e9f7f4ccb34d68deba718
1
// cs0619-27.cs: `I' is obsolete: `Do not use it'
2
// Line: 12
3
4
using
System
;
5
6
[
Obsolete
(
"Do not use it"
,
true
)]
7
interface
I
{
8
}
9
10
class
B
{
11
I i
;
12
}