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
[loader] LoadFrom of problematic images should reprobe
[mono-project.git]
/
mcs
/
errors
/
cs1060.cs
blob
ca5cba814cad512dcb7a57515b4a4bab37667472
1
// CS1060: Use of possibly unassigned field `c'
2
// Line: 19
3
// Compiler options: -warnaserror
4
5
public class
C
6
{
7
public int
v
;
8
}
9
10
public struct
S
11
{
12
public
C c
;
13
}
14
15
public class
Test
16
{
17
static void
Main
()
18
{
19
S s
;
20
s
.
c
.
v
=
5
;
21
}
22
}