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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0455-3.cs
blob
fe08835898be0e24b33b7d2605e4f5e5e492c9ba
1
// CS0455: Type parameter `T' inherits conflicting constraints `System.ValueType' and `Test'
2
// Line: 8
3
4
class
Test
5
{ }
6
7
class
Foo
<
T
,
U
>
8
where T
:
struct
,
U
9
where U
:
Test
10
{ }