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
2010-03-03 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
cs0122-14.cs
blob
4a065cf858da86a69e352a3ba058bb341c97a144
1
// cs0122-14.cs: `Test.SomeValue' is inaccessible due to its protection level
2
// Line: 7
3
// Compiler options: -r:CS0122-14-lib.dll
4
5
public class
MyEnum
6
{
7
int
Unknown
=
Test
.
SomeValue
;
8
static void
Main
() {}
9
}
10