summaryrefslogtreecommitdiff
path: root/mcs/errors/cs0060-9.cs
blob: 1096ccb91fbf0b9b793383ef78c257773bd5cb69 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
// CS0060: Inconsistent accessibility: base class `System.Collections.Generic.List<Foo<T>.Bar>' is less accessible than class `Foo<T>'
// Line: 7

using System;
using System.Collections.Generic;

public class Foo<T> : List<Foo<T>.Bar>
{
	class Bar
	{
	}
}