Initial set of Ward sgen annotations (#5705)
[mono.git] / mcs / errors / cs0412-2.cs
1 // CS0412: The type parameter name `T' is the same as local variable or parameter name
2 // Line: 8
3
4 using System;
5
6 interface I
7 {
8         T Foo<T>(IComparable T);
9 }