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
2009-07-20 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
gcs1718.cs
blob
8faec5c028514007a852e78debcb6e7fd098fbc9
1
// CS1718: A comparison made to same variable. Did you mean to compare something else?
2
// Line: 10
3
// Compiler options: -warnaserror -warn:3
4
5
class
C
6
{
7
public static void
Main
()
8
{
9
int
?
a
=
20
;
10
if
(
a
>
a
) {
11
return
;
12
}
13
}
14
}
15