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] Don't check for exception in native wrappers (#14184)
[mono-project.git]
/
mcs
/
errors
/
cs1060-2.cs
blob
819671a93380b77e43809f8f1184dc91150be43b
1
// CS1060: Use of possibly unassigned field `c'
2
// Line: 25
3
// Compiler options: -warnaserror
4
5
public class
C
6
{
7
public int
v
;
8
}
9
10
public struct
S2
11
{
12
public
C c
;
13
}
14
15
public struct
S
16
{
17
public
S2 s2
;
18
}
19
20
public class
Test
21
{
22
static void
Main
()
23
{
24
S s
;
25
s
.
s2
.
c
.
v
=
9
;
26
}
27
}