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-04-15 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs0450-2.cs
blob
7c4947ea81494c61c35d799db183259ca8ac6840
1
// CS0450: `A<bool,int>': cannot specify both a constraint class and the `class' or `struct' constraint
2
// Line: 8
3
4
class
A
<
T
,
U
>
5
{
6
}
7
8
delegate void
Test
<
T
>()
where T
:
struct
,
A
<
bool
,
int
>;