Fix problems with overlong directory names: phase #1
[mono.git] / mcs / errors / gcs0412-2.cs
1 // CS0412: The type parameter name `T' is the same as `method parameter'\r
2 // Line: 8\r
3 \r
4 using System;\r
5 \r
6 interface I\r
7 {\r
8         T Foo<T>(IComparable T);\r
9 }