blob: af155ce6635af53129e253c0ca3093f6196da2e7 [file] [log] [blame]
// Copyright 2020 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 zxio;
/// Doc Comments for Uint16Bits
///
/// Doc comments testing.
bits Uint16Bits : uint16 {
/// Doc comment on bits member.
FOO = 0x1;
};
bits NoDocCommentBits : uint32 {
FOO = 0x1;
BAR = 0x2;
};