blob: da5fce95ec9da755cc5b92de6b380fc3aea22163 [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.
library fidl.test.bitsflexiblestrict;
// [START contents]
strict bits Flags {
OPTION_A = 1;
OPTION_B = 2;
};
// [END contents]