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