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
/
cs0717-2.cs
blob
f64faa3496709206fb5aa1e54cff652d54af12e8
1
// CS0717: `System.Console' is not a valid constraint. Static classes cannot be used as constraints
2
// Line: 6
3
4
abstract class
C
5
{
6
public abstract void
Foo
<
U
> ()
where U
:
System
.
Console
;
7
}