// 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; |