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
Merge pull request #1525 from akoeplinger/fix-dynamicdata-test
[mono-project.git]
/
mcs
/
errors
/
cs0122-13.cs
blob
5925d457c5ee05e0393af0585dabfb1c8628366b
1
// CS0122: `Test.foo' is inaccessible due to its protection level
2
// Line: 10
3
4
internal class
Test
5
{
6
protected const int
foo
=
0
;
7
}
8
internal class
Rest
9
{
10
protected const int
foo
=
Test
.
foo
;
11
12
static void
Main
() {}
13
}