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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
gcs0460.cs
blob
d016a8ac4a48b772598bc8549989214ee2b43e38
1
// CS0460: `C.I.Test<C>()': Cannot specify constraints for overrides or explicit interface implementation methods
2
// Line: 11
3
4
interface
I
5
{
6
void
Test
<
T
>()
where T
:
new
();
7
}
8
9
class
C
:
I
10
{
11
void
I
.
Test
<
C
>()
where C
:
class
12
{
13
}
14
}