blob: 0f0ddb7afd1daae1b91e9b587bf69d2b0d6ab784 [file] [log] [blame]
// Part of the Crubit project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
#ifndef THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_UNIONS_H_
#define THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_UNIONS_H_
union EmptyUnion {};
struct Nontrivial final {
explicit Nontrivial();
Nontrivial(Nontrivial&&);
int field;
};
union NonEmptyUnion {
bool bool_field;
char char_field;
int int_field;
long long long_long_field;
};
union NonCopyUnion {
bool trivial_member;
Nontrivial nontrivial_member;
};
union UnionWithOpaqueField {
char constant_array_field_not_yet_supported[42];
};
#endif // THIRD_PARTY_CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_UNIONS_H_