summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0723-3.cs
blob: df218c9836b6f6f7eb0550322ca4df43e800f9a7 (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;
}