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

gcs0718.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 282ff3b0312f75160ccc99cc2dbf96f8000fd4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// CS0718: `S': static classes cannot be used as generic arguments
// Line: 14

static class S
{
}

class C<T>
{
}

class Test
{
	C<S> foo;
}