blob: 72054efcf846391b343916b30d157a45e771affc [file] [log] [blame]
// Copyright 2022 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
fn main() {
let num = 9;
#[allow(clippy::while_immutable_condition)] // TODO(fxbug.dev/95052)
while num >= 10 {}
}