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-03-03 Rodrigo Kumpera <rkumpera@novell.com>
[mcs.git]
/
errors
/
gcs0414.cs
blob
0bd9d7fbbb7fcf9b0d50d67331457292958307f8
1
// cs0414.cs: The private field `X.i' is assigned but its value is never used
2
// Line: 6
3
// Compiler options: -warnaserror -warn:3
4
5
class
X
{
6
int
i
=
3
;
7
8
public void
Y
()
9
{
10
}
11
}