blob: f594c7ab08d9500a3a8ca4f619b6129f84b04e36 [file] [log] [blame]
// Copyright 2018 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.misc;
struct Int64Struct {
int64 x;
};
struct HasOptionalFieldStruct {
Int64Struct? x;
};
struct Has2OptionalFieldStruct {
Int64Struct? x;
Int64Struct? y;
};
union SimpleUnion {
int32 i32;
int64 i64;
Int64Struct s;
Int64Struct? os;
};