summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0146-7.cs
blob: 239c9f71195e1462ea2496afeb3943791bf3982a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// CS0146: Circular base class dependency involving `Generic<P>.Status' and `Generic<P>.Status'
// Line: 6

public class Generic<P>
{
	public class Status : Status
	{
		Status (Foo foo) : base (foo)
		{
		}
	}
}