2009-06-01 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / errors / gcs0412-3.cs
1 // CS0412: The type parameter name `T' is the same as `local variable'\r
2 // Line: 8\r
3 \r
4 class C\r
5 {\r
6         public void Foo<T> (int value)\r
7         {\r
8                 int T;\r
9         }\r
10 }