blob: 286628bac542ec2cd23d3a88f4a4ddeb622531c9 [file] [log] [blame]
// 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;
};