blob: e2b21419160308ba04db76e30140f7cfc530bcce [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
#include <cstddef>
#include <memory>
#include "rs_bindings_from_cc/support/cxx20_backports.h"
#include "rs_bindings_from_cc/support/offsetof.h"
#include "rs_bindings_from_cc/test/golden/bitfields.h"
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wthread-safety-analysis"
extern "C" void __rust_thunk___ZN13WithBitfieldsC1Ev(
class WithBitfields* __this) {
crubit::construct_at(std::forward<decltype(__this)>(__this));
}
extern "C" void __rust_thunk___ZN13WithBitfieldsC1ERKS_(
class WithBitfields* __this, const class WithBitfields& __param_0) {
crubit::construct_at(std::forward<decltype(__this)>(__this),
std::forward<decltype(__param_0)>(__param_0));
}
extern "C" void __rust_thunk___ZN13WithBitfieldsD1Ev(
class WithBitfields* __this) {
std::destroy_at(std::forward<decltype(__this)>(__this));
}
extern "C" class WithBitfields& __rust_thunk___ZN13WithBitfieldsaSERKS_(
class WithBitfields* __this, const class WithBitfields& __param_0) {
return __this->operator=(std::forward<decltype(__param_0)>(__param_0));
}
static_assert(sizeof(class WithBitfields) == 32);
static_assert(alignof(class WithBitfields) == 4);
static_assert(CRUBIT_OFFSET_OF(f2, class WithBitfields) == 4);
static_assert(CRUBIT_OFFSET_OF(f5, class WithBitfields) == 20);
static_assert(CRUBIT_OFFSET_OF(f7, class WithBitfields) == 27);
#pragma clang diagnostic pop