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
/
dtest-026.cs
blob
09790ed23b733a95516697a750785ae7e943ed2b
1
// Dynamic and value types
2
3
struct
S
4
{
5
public int
Value
;
6
}
7
8
class
C
9
{
10
static dynamic
f
;
11
12
public static int
Main
()
13
{
14
f
=
new
S
();
15
f
.
Value
=
5
;
16
if
(
f
.
Value
!=
5
)
17
return
1
;
18
19
return
0
;
20
}
21
}