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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0265.cs
blob
32a009d79c7881c48f879928abd312700d3137fa
1
// CS0265: Partial declarations of `Partial<T>' have inconsistent constraints for type parameter `T'
2
// Line: 4
3
4
partial class
Partial
<
T
>
where T
:
class
,
new
()
5
{
6
}
7
8
partial class
Partial
<
T
>
where T
:
new
()
9
{
10
}