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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0122.cs
blob
63831af10ade8cc5f377222c256f4767247f26e8
1
// CS0122: `Y.x()' is inaccessible due to its protection level
2
// Line: 15
3
using
System
;
4
5
class
Y
{
6
void
x
() {}
7
8
}
9
10
class
X
{
11
static int
Main
()
12
{
13
Y y
=
new
Y
();
14
15
y
.
x
();
16
return
0
;
17
}
18
}