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
[interp] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs0122-8.cs
blob
5f115025ed013d3dd6befc92266a8bc427d3e160
1
// CS0122: `A.AA.Foo()' is inaccessible due to its protection level
2
// Line: 16
3
// Compiler options: -r:CS0122-8-lib.dll
4
5
public class
Test
6
{
7
public static void
Main
()
8
{
9
new
B
.
BB
().
Foo
();
10
}
11
}