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 comment
[mcs.git]
/
tests
/
test-190.cs
blob
4a8f6bea780303c81a611860f1f2e46a0be4f452
1
class
A
2
{
3
private int
foo
=
0
;
4
5
class
B
:
A
6
{
7
void
Test
()
8
{
9
foo
=
3
;
10
}
11
}
12
13
class
C
14
{
15
void
Test
(
A a
)
16
{
17
a
.
foo
=
4
;
18
}
19
}
20
21
static void
Main
()
22
{ }
23
}