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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
errors
/
cs0122-15.cs
blob
85140e81b3d0dc6f2f5d8f8e7491ea7446103c05
1
// CS0122: `Test.SomeValue' is inaccessible due to its protection level
2
// Line: 7
3
// Compiler options: -r:CS0122-15-lib.dll
4
5
public class
MyEnum
6
{
7
int
Unknown
=
Test
.
SomeValue
;
8
static void
Main
() {}
9
}
10