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-02-19 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
gcs0703-3.cs
blob
95b03d1af4946bce33a259278942daae12bb7fd1
1
// CS0703: Inconsistent accessibility: constraint type `C.I' is less accessible than `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
}