// 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>; | |
}; | |
type Uint32VectorStruct = struct { | |
vec vector<uint32>; | |
}; |