1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
// 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_enumflexiblestrict as fidl_lib;
// [START contents]
fn complement(color: &fidl_lib::Color) -> Option<fidl_lib::Color> {
#[allow(unreachable_patterns)]
match color {
fidl_lib::Color::Red => Some(fidl_lib::Color::Blue),
fidl_lib::Color::Blue => Some(fidl_lib::Color::Red),
_ => None,
}
}
// [END contents]
fn main() {}