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
2010-06-14 Atsushi Enomoto <atsushi@ximian.com>
[mcs.git]
/
errors
/
cs0649-2.cs
blob
6b68ffbfc887ac59b4404845c6adda888f276691
1
// CS0649: Field `X.y' is never assigned to, and will always have its default value `null'
2
// Line: 10
3
// Compiler options: -warnaserror -warn:4
4
5
class
X
{
6
Y y
;
7
8
Y Value
{
9
get
{
10
return
y
;
11
}
12
}
13
}
14
15
struct
Y
16
{
17
}