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
Merge pull request #2314 from lambdageek/dev/local-handles
[mono-project.git]
/
mcs
/
errors
/
cs0619-41.cs
blob
68360976a759ead97acb09cd78d9bab88e399ce5
1
// CS0619: `Y' is obsolete: `ooo'
2
// Line: 6
3
4
using
System
;
5
6
class
X
:
I
<
Y
>
7
{
8
}
9
10
interface
I
<
T
>
11
{
12
13
}
14
15
[
Obsolete
(
"ooo"
,
true
)]
16
class
Y
17
{
18
}