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
2008-09-29 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs1717-5.cs
blob
b96d8eced2ff517d054ed00aae4e6999e6359a6d
1
// cs1717-5.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
()
8
{
9
int
a
=
a
=
5
;
10
}
11
}