Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / errors / gcs0412-3.cs
1 // CS0412: The type parameter name `T' is the same as local variable or parameter name
2 // Line: 8
3
4 class C
5 {
6         public void Foo<T> (int value)
7         {
8                 int T;
9         }
10 }