repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
gcs0122-3.cs
blob
76435ab051eee6397dbf3e2d55fc85ba0dc0bc74
1
// CS0122: `Bar.Baz' is inaccessible due to its protection level
2
// Line: 7
3
4
public class
Foo
<
K
> {
5
}
6
7
public class
Bar
:
Foo
<
Bar
.
Baz
> {
8
private class
Baz
{
9
}
10
}