a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
16 lines
210 B
C#
16 lines
210 B
C#
// Compiler options: -warnaserror
|
|
|
|
// Checks redundant CS0642 warning
|
|
|
|
public class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
int v;
|
|
for (v = 1; v >= 0; v--) ;
|
|
uint [] b = null;
|
|
if (b != null)
|
|
return;
|
|
}
|
|
}
|