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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs0761-2.cs
blob
09964af492f4915731f965509175c1d5643a8946
1
// CS0761: Partial method declarations of `C.Foo<U>()' have inconsistent constraints for type parameter `U'
2
// Line: 8
3
4
partial class
C
5
{
6
partial void
Foo
<
T
> ()
where T
:
new
();
7
8
partial void
Foo
<
U
> ()
9
{
10
}
11
}