blob: 0ba77c88b09dbd7a38247d4529f558effa36b1d0 [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 fidl.llcpp.linearized.test;
type NoOpLinearizedStruct = struct {
x int64;
};
type InnerStruct = struct {
x int32;
};
type FullyLinearizedStruct = struct {
ptr box<InnerStruct>;
};