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
/
gcs0412-2.cs
blob
a03a7ab83209cac533dc708ccb0e63061c44b671
1
// CS0412: The type parameter name `T' is the same as `method parameter'
2
// Line: 8
3
4
using
System
;
5
6
interface
I
7
{
8
T Foo
<
T
>(
IComparable T
);
9
}