[interp] Fall back to old implementation when calling on proxy
[mono-project.git] / mcs / errors / cs0449.cs
blob13d9259b0c77baaaa592d64884c86c47dc3fd5c4
1 // CS0449: The `class' or `struct' constraint must be the first constraint specified
2 // Line: 6
4 interface I
6 void Foo<T> () where T : class, struct;