a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
14 lines
257 B
C#
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
|
|
{
|
|
}
|
|
}
|
|
|