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 #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0703-3.cs
blob
72e78e16ffd352e992516942c3a572f2ad76b378
1
// CS0703: Inconsistent accessibility: constraint type `C.I' is less accessible than `C.Foo<T>()'
2
// Line: 10
3
4
public class
C
5
{
6
interface
I
7
{
8
}
9
10
public void
Foo
<
T
>()
where T
:
I
11
{
12
}
13
}