2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0699.cs
1 // CS0699: `Test<T>': A constraint references nonexistent type parameter `U'
2 // Line: 8
3
4 interface I
5 {
6         void Test<T>() where U : class;
7 }