blob: d22dd385c29531c109c669d462d9da47d8a17bec [file] [log] [blame]
Michael Forster523dbd42021-10-12 11:05:44 +00001#![feature(const_maybe_uninit_as_ptr, const_ptr_offset_from, const_raw_ptr_deref)]
2// Part of the Crubit project, under the Apache License v2.0 with LLVM
3// Exceptions. See /LICENSE for license information.
4// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
5
6
7use memoffset_unstable_const::offset_of;
8use static_assertions::const_assert_eq;
9
10#[derive(Clone, Copy)]
11#[repr(C)]
12pub struct CustomType {
13 pub i: i32,
14}
15
Michael Forster07a38332021-10-13 07:15:45 +000016// rs_bindings_from_cc/test/golden/unsupported.h;l=8
Michael Forster523dbd42021-10-12 11:05:44 +000017// Error while generating bindings for item 'UnsupportedParamType':
18// Parameter type 'struct CustomType' is not supported
19
Michael Forster07a38332021-10-13 07:15:45 +000020// rs_bindings_from_cc/test/golden/unsupported.h;l=9
Michael Forster523dbd42021-10-12 11:05:44 +000021// Error while generating bindings for item 'UnsupportedUnnamedParam':
22// Empty parameter names are not supported
23
Michael Forster07a38332021-10-13 07:15:45 +000024// rs_bindings_from_cc/test/golden/unsupported.h;l=10
Michael Forster523dbd42021-10-12 11:05:44 +000025// Error while generating bindings for item 'UnsupportedReturnType':
26// Return type 'struct CustomType' is not supported
27
Michael Forster07a38332021-10-13 07:15:45 +000028// rs_bindings_from_cc/test/golden/unsupported.h;l=12
Michael Forster523dbd42021-10-12 11:05:44 +000029// Error while generating bindings for item 'MultipleReasons':
30// Parameter type 'struct CustomType' is not supported
31
Michael Forster07a38332021-10-13 07:15:45 +000032// rs_bindings_from_cc/test/golden/unsupported.h;l=12
Michael Forster523dbd42021-10-12 11:05:44 +000033// Error while generating bindings for item 'MultipleReasons':
34// Empty parameter names are not supported
35
Michael Forster07a38332021-10-13 07:15:45 +000036// rs_bindings_from_cc/test/golden/unsupported.h;l=12
Michael Forster523dbd42021-10-12 11:05:44 +000037// Error while generating bindings for item 'MultipleReasons':
38// Return type 'struct CustomType' is not supported
39
Michael Forsterf1dce422021-10-13 09:50:16 +000040// CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_UNSUPPORTED_H_
41
Michael Forster523dbd42021-10-12 11:05:44 +000042const_assert_eq!(std::mem::size_of::<CustomType>(), 4usize);
43const_assert_eq!(std::mem::align_of::<CustomType>(), 4usize);
44const_assert_eq!(offset_of!(CustomType, i) * 8, 0usize);