* Form.cs: Make the fix for #80775 windows-only (fixes #81957).
[mono.git] / mcs / errors / gcs0412.cs
1 // CS0412: The type parameter name `T' is the same as `method parameter'\r
2 // Line: 6\r
3 \r
4 class C\r
5 {\r
6         public void Foo<T> (string T)\r
7         {\r
8         }\r
9 }