Jo Shields a575963da9 Imported Upstream version 3.6.0
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
2014-08-13 10:39:27 +01:00

14 lines
257 B
C#

// 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
{
}
}