[wasm] Fix WASM CI script. (#6741)
[mono-project.git] / mcs / errors / cs0060-9.cs
blob1096ccb91fbf0b9b793383ef78c257773bd5cb69
1 // CS0060: Inconsistent accessibility: base class `System.Collections.Generic.List<Foo<T>.Bar>' is less accessible than class `Foo<T>'
2 // Line: 7
4 using System;
5 using System.Collections.Generic;
7 public class Foo<T> : List<Foo<T>.Bar>
9 class Bar