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
[cominterop] Default to [in] parameter direction when not specified explicitly.
[mono-project.git]
/
mcs
/
errors
/
cs0060-7.cs
blob
bf9f047da3728239308ff1037cc67e044023d4d2
1
// CS0060: Inconsistent accessibility: base class `Foo<Bar.Baz>' is less accessible than class `Bar'
2
// Line: 7
3
4
public class
Foo
<
K
> {
5
}
6
7
public class
Bar
:
Foo
<
Bar
.
Baz
> {
8
private class
Baz
{
9
}
10
}