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