2010-04-03 Jb Evain <jbevain@novell.com>
[mcs.git] / errors / cs1718.cs
blob0e9299c4653389835542eb616ab8c21b1a2e7409
1 // CS1718: A comparison made to same variable. Did you mean to compare something else?
2 // Line: 10
3 // Compiler options: -warnaserror -warn:3
5 class C
7 public static void Main ()
8 {
9 int a = 20;
10 if (a > a) {
11 return;