Remove debugging code from generated code
[mono-project.git] / mcs / errors / cs1718.cs
blob0f585a0a54a4e35f1c96368b90d315fce300fb3d
1 // cs1718.cs: 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;