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
Fix LLVM linker flags for 6.0.
[mono-project.git]
/
mcs
/
tests
/
test-190.cs
blob
e44ea79c2a8c1adc36eb884c7ac365cacc814f13
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
public static void
Main
()
22
{ }
23
}