[amd64] Add XMM registers to MonoContext on linux
[mono.git] / mcs / errors / cs0693-3.cs
1 // CS0693: Type parameter `T' has the same name as the type parameter from outer type `C<T>'
2 // Line: 7
3 // Compiler options: -warnaserror -warn:3
4
5 class C<T>
6 {
7         void Foo<T> (T t)
8         {
9         }
10 }