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

gcs0723.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8ddfca411e8b488f0604c1678d10e427f1eee55d (plain)
1
2
3
4
5
6
7
8
9
10
11
// CS0723: `C<T>.t': cannot declare variables of static types
// Line: 10

static class S<T>
{
}

public class C<T>
{
	S<T> t;
}