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
Merge pull request #4202 from marek-safar/compression
[mono-project.git]
/
mcs
/
tests
/
dtest-018.cs
blob
b452bf138074924ed8a7362335563a95c756a7eb
1
class
XValue
2
{
3
public long
Y { get; set; }
4
}
5
6
class
A
7
{
8
public dynamic
X
=
new
XValue
();
9
10
public static int
Main
()
11
{
12
var
v
=
new
A { X = { Y = 467 }
};
13
if
(
v
.
X
.
Y
!=
467
)
14
return
1
;
15
16
return
0
;
17
}
18
}