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
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
CS0425-7-lib.cs
blob
a445800b3462311d2eb7017ece965234675ac33f
1
// CS0425:
2
// Line:
3
4
public interface
IA
5
{
6
void
Foo
<
U
> ();
7
}
8
9
public class
CA
10
{
11
public void
Foo
<
T
> ()
where T
:
class
12
{
13
}
14
}