2009-06-17 Marek Safar <marek.safar@gmail.com>
[mono.git] / mcs / errors / gcs0450-2.cs
1 // CS0450: `A<bool,int>': cannot specify both a constraint class and the `class' or `struct' constraint
2 // Line: 8
3
4 class A<T, U>
5 {
6 }
7
8 delegate void Test<T>() where T : struct, A<bool, int>;