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
resync
[mcs.git]
/
errors
/
gcs0703.cs
blob
c39ab16ee1af12598a61444bf1352c8f73276408
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
}