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-06-21 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
gcs0265.cs
blob
8446095e930e31c7d469778667b6a04c31f14247
1
// gcs0265.cs: 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
}