blob: 3d6cf528ab6102d212c4d2161dd6e7fbe9be8f8e [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;
enum Destination : uint32 {
FOO = 1;
};
/// Test doc comment on type alias.
using Alias = Destination;
// Test aliasing a special type charptr.
// This item should not occur in the library header output.
using charptr = uint64;
using AliasCharPtr = charptr;