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
[Http]: Cosmetic, remove some dead code.
[mono-project.git]
/
mcs
/
errors
/
cs0619-57.cs
blob
bb90d739da59f4bdfc53c72302f72fbcda600f04
1
// CS0619: `IB' is obsolete: `hint'
2
// Line: 20
3
4
using
System
;
5
6
public interface
IA
7
{
8
#pragma warning disable 619
9
void
Foo
<
T
> ()
where T
:
IB
;
10
#pragma warning restore 619
11
}
12
13
[
Obsolete
(
"hint"
,
true
)]
14
public interface
IB
15
{
16
}
17
18
public class
C
:
IA
19
{
20
void
IA
.
Foo
<
X
> ()
21
{
22
}
23
}