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
/
cs0703.cs
blob
38ddadfd77d0b6478a2c41f8a112f05c1073513e
1
// CS0703: Inconsistent accessibility: constraint type `I' is less accessible than `C<T>'
2
// Line: 8
3
4
interface
I
5
{
6
}
7
8
public class
C
<
T
>
where T
:
I
9
{
10
}