repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Merge pull request #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0060-9.cs
blob
1096ccb91fbf0b9b793383ef78c257773bd5cb69
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