| // Copyright 2019 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 test.conformance; | |
| type EmptyStructSandwich = struct { | |
| before string; | |
| es EmptyStruct; | |
| after string; | |
| }; | |
| type Uint8Uint16Uint32Uint64 = struct { | |
| f1 uint8; | |
| f2 uint16; | |
| f3 uint32; | |
| f4 uint64; | |
| }; | |
| type Uint64Uint32Uint16Uint8 = struct { | |
| f1 uint64; | |
| f2 uint32; | |
| f3 uint16; | |
| f4 uint8; | |
| }; |