[amd64] Save missing register
[mono.git] / mcs / errors / cs0699.cs
1 // CS0699: `I.Test<T>()': A constraint references nonexistent type parameter `U'
2 // Line: 6
3
4 interface I
5 {
6         void Test<T>() where U : class;
7 }