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
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
tests
/
test-822.cs
blob
700ec95fd39cfe10a9fcdee7315863d19dc4d65a
1
// Compiler options: -r:test-822-lib.dll
2
3
using
System
;
4
5
class
Test
6
{
7
public static int
Main
()
8
{
9
B b
=
new
B
();
10
b
.
Prop
=
1
;
11
int
a
=
b
.
Prop
;
12
return
0
;
13
}
14
}