blob: b66de7200fc3c4f9e8e62170804e62316ae7a3d4 [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 fidl.test.example.codingtablesdeps;
flexible union MyXUnionA {
1: uint64 a;
2: MyXUnionB b;
};
flexible union MyXUnionB {
1: uint32 foo;
2: bool bar;
};