Merge pull request #5675 from mono/glib-debug-symbols
[mono.git] / mcs / tests / test-685.cs
1 // Compiler options: -warnaserror
2
3 // Checks redundant CS0642 warning
4
5 public class C
6 {
7         public static void Main ()
8         {
9                 int v;
10                 for (v = 1; v >= 0; v--) ;
11                 uint [] b = null;
12                 if (b != null)
13                         return;
14         }
15 }