repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
use MOONLIGHT symbol
[mcs.git]
/
errors
/
cs0649.cs
blob
ad4337cc62cb1b06f4fd9e10e7af882ef957b0b8
1
// cs0649.cs: 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
}