Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gcs0449.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 13d9259b0c77baaaa592d64884c86c47dc3fd5c4 (plain)
1
2
3
4
5
6
7
// CS0449: The `class' or `struct' constraint must be the first constraint specified
// Line: 6

interface I
{
	void Foo<T> () where T : class, struct;
}