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
/
cs0649.cs
blob
af96084fdd1b6ba37ac01efe8de010055328f406
1
// CS0649: Field `X.s' is never assigned to, and will always have its default value `null'
2
// Line: 4
3
// Compiler options: -warnaserror -warn:4
4
5
class
X
{
6
string
s
;
7
8
string
Value
{
9
get
{
10
return
s
;
11
}
12
}
13
}