A warning should be reported using `foreach` with a nullable value. ``` class C { static void F(object[]? args) { foreach (var o in args) // warn { } } } ```