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-03-07 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
gcs0450.cs
blob
d19bfb8d40dff54af6fd05b8317852419e6acb67
1
// CS0450: `A': cannot specify both a constraint class and the `class' or `struct' constraint
2
// Line: 8
3
4
class
A
5
{
6
}
7
8
class
B
<
T
>
where T
:
class
,
A
9
{
10
}