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
2010-01-31 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0703-2.cs
blob
e07b6737d8718f85d30a4dd48261e6522b20b89e
1
// CS0703: Inconsistent accessibility: constraint type `A.B<T>.C' is less accessible than `A.B<T>'
2
// Line: 6
3
4
public class
A
5
{
6
protected internal class
B
<
T
>
where T
:
B
<
T
>.
C
7
{
8
internal class
C
9
{
10
}
11
}
12
}