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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs1717-4.cs
blob
89de62494d91a43aaf6b24270364f9023382298e
1
// CS1717: Assignment made to same variable; did you mean to assign something else?
2
// Line: 9
3
// Compiler options: -warnaserror -warn:3
4
5
class
A
6
{
7
static int
Value
;
8
9
void
D
()
10
{
11
A
.
Value
=
Value
;
12
}
13
}