blob: 73cd74fbd2cba7dfc6d1b2aa9b6e9385a6a55292 [file] [log] [blame]
// Copyright (c) 2019, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
// @dart=2.9
class Class {}
main() {
var o;
if (false) {
// ignore: unused_local_variable
for (Class c in o?.iterable) {}
}
}