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
add monotouch sources file
[mcs.git]
/
errors
/
cs0122-22.cs
blob
252fc011c59392a002a0bd17cd2fc9c7292ecad1
1
// CS0122: `Test.A.B' is inaccessible due to its protection level
2
// Line: 6
3
4
namespace
Test
5
{
6
public sealed class
A
7
{
8
private class
B
9
{
10
public static void
Method
()
11
{
12
}
13
}
14
}
15
16
class
MainClass
17
{
18
public static void
Main
(
string
[]
args
)
19
{
20
A
.
B
.
Method
();
21
}
22
}
23
}