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
2007-03-28 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs1717-3.cs
blob
d4ec968ced59e5231c16046491ec058aaf909977
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
int
i
;
8
9
void
C
()
10
{
11
i
=
i
;
12
}
13
}