Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 1 | #![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 | |
| 7 | use memoffset_unstable_const::offset_of; |
| 8 | use static_assertions::const_assert_eq; |
| 9 | |
| 10 | #[derive(Clone, Copy)] |
| 11 | #[repr(C)] |
| 12 | pub struct CustomType { |
| 13 | pub i: i32, |
| 14 | } |
| 15 | |
Michael Forster | 07a3833 | 2021-10-13 07:15:45 +0000 | [diff] [blame] | 16 | // rs_bindings_from_cc/test/golden/unsupported.h;l=8 |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 17 | // Error while generating bindings for item 'UnsupportedParamType': |
| 18 | // Parameter type 'struct CustomType' is not supported |
| 19 | |
Michael Forster | 07a3833 | 2021-10-13 07:15:45 +0000 | [diff] [blame] | 20 | // rs_bindings_from_cc/test/golden/unsupported.h;l=9 |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 21 | // Error while generating bindings for item 'UnsupportedUnnamedParam': |
| 22 | // Empty parameter names are not supported |
| 23 | |
Michael Forster | 07a3833 | 2021-10-13 07:15:45 +0000 | [diff] [blame] | 24 | // rs_bindings_from_cc/test/golden/unsupported.h;l=10 |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 25 | // Error while generating bindings for item 'UnsupportedReturnType': |
| 26 | // Return type 'struct CustomType' is not supported |
| 27 | |
Michael Forster | 07a3833 | 2021-10-13 07:15:45 +0000 | [diff] [blame] | 28 | // rs_bindings_from_cc/test/golden/unsupported.h;l=12 |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 29 | // Error while generating bindings for item 'MultipleReasons': |
| 30 | // Parameter type 'struct CustomType' is not supported |
| 31 | |
Michael Forster | 07a3833 | 2021-10-13 07:15:45 +0000 | [diff] [blame] | 32 | // rs_bindings_from_cc/test/golden/unsupported.h;l=12 |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 33 | // Error while generating bindings for item 'MultipleReasons': |
| 34 | // Empty parameter names are not supported |
| 35 | |
Michael Forster | 07a3833 | 2021-10-13 07:15:45 +0000 | [diff] [blame] | 36 | // rs_bindings_from_cc/test/golden/unsupported.h;l=12 |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 37 | // Error while generating bindings for item 'MultipleReasons': |
| 38 | // Return type 'struct CustomType' is not supported |
| 39 | |
Michael Forster | f1dce42 | 2021-10-13 09:50:16 +0000 | [diff] [blame^] | 40 | // CRUBIT_RS_BINDINGS_FROM_CC_TEST_GOLDEN_UNSUPPORTED_H_ |
| 41 | |
Michael Forster | 523dbd4 | 2021-10-12 11:05:44 +0000 | [diff] [blame] | 42 | const_assert_eq!(std::mem::size_of::<CustomType>(), 4usize); |
| 43 | const_assert_eq!(std::mem::align_of::<CustomType>(), 4usize); |
| 44 | const_assert_eq!(offset_of!(CustomType, i) * 8, 0usize); |