blob: 0d3a52ad0dbdff00e926fc2f875501d6f2e5abc5 [file] [log] [blame]
// Copyright 2021 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.
#![allow(dead_code)]
use fidl_fidl_test_bitsflexiblestrict as fidl_lib;
// [START contents]
fn use_bits(bits: &fidl_lib::Flags) -> fidl_lib::Flags {
let mut result = fidl_lib::Flags::empty();
if bits.contains(fidl_lib::Flags::OptionA) {
result.set(fidl_lib::Flags::all(), true);
}
return result;
}
// [END contents]
fn main() {}