summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0718.cs
blob: 828b2512eeff100feff74f46e8e6da23e0ab0279 (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;
}