Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / errors / cs0060-9.cs
1 // CS0060: Inconsistent accessibility: base class `System.Collections.Generic.List<Foo<T>.Bar>' is less accessible than class `Foo<T>'
2 // Line: 7
3
4 using System;
5 using System.Collections.Generic;
6
7 public class Foo<T> : List<Foo<T>.Bar>
8 {
9         class Bar
10         {
11         }
12 }
13