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
[metadata] Use MONO_PROFILER_API on MonoClass getters in checked builds (#20440)
[mono-project.git]
/
mcs
/
errors
/
cs0122-6.cs
blob
d0952cfcdf2ccf2c1aa2e513c46cdcb0c9d0dbcf
1
// CS0122: `Test.Foo.IBar' is inaccessible due to its protection level
2
// Line: 11
3
4
public class
Test
5
{
6
public class
Foo
7
{
8
protected interface
IBar
{}
9
}
10
11
private class
Bar
:
Foo
.
IBar
12
{
13
}
14
15
public static void
Main
() {}
16
}
17