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-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1717.cs
blob
200ddfbebed398bb6e0e2bf66d695d2a7ac3b398
1
// cs1717.cs: 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
public
A
(
int
a
)
8
{
9
a
=
a
;
10
}
11
}