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-01-03 Zoltan Varga <vargaz@gmail.com>
[mcs.git]
/
errors
/
gcs0449-3.cs
blob
c23a624d9c491d9085eb36acf268d0ba50042e2d
1
// CS0449: The `class' or `struct' constraint must be the first constraint specified
2
// Line: 6
3
4
public class
C
<
T
>
5
{
6
public void
Foo
<
T
>()
where T
:
class
,
struct
7
{
8
}
9
}