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
2009-02-27 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0717.cs
blob
b7d06d1ee3f99364c512fed025bda85b07d425e9
1
// CS0717: `S' is not a valid constraint. Static classes cannot be used as constraints
2
// Line: 8
3
4
static class
S
5
{
6
}
7
8
class
Foo
<
T
>
where T
:
S
9
{
10
}