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
[configure] Add new target.
[mono-project.git]
/
mcs
/
tests
/
test-828.cs
blob
cd51d7fa1f3c16e81fbf9af7c3e8375bd4659fa5
1
// Compiler options: -warnaserror
2
3
public class
C
4
{
5
public int
v
;
6
}
7
8
public struct
S2
9
{
10
public
C c
;
11
public int
v
;
12
}
13
14
public struct
S
15
{
16
public
S2 s2
;
17
}
18
19
public class
Test
20
{
21
public static void
Main
()
22
{
23
S s
;
24
s
.
s2
.
v
=
9
;
25
}
26
}