2008-02-18 Zoltan Varga <vargaz@gmail.com>
[mono.git] / mcs / errors / gcs0449.cs
1 // CS0449: The `class' or `struct' constraint must be the first constraint specified
2 // Line: 6
3
4 interface I
5 {
6         void Foo<T> () where T : class, struct;
7 }