Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replacement types possibly confuse used_template_params somehow #3161

Open
adetaylor opened this issue Feb 26, 2025 · 0 comments
Open

Replacement types possibly confuse used_template_params somehow #3161

adetaylor opened this issue Feb 26, 2025 · 0 comments

Comments

@adetaylor
Copy link
Contributor

Reproduction:

C++:

/**
* <div rustbindgen="true" replaces="std::unique_ptr">
*/
template<typename T> class UniquePtr {
    T* ptr;
};

#include <memory>

template <typename at> class au {
std::unique_ptr<at> aw;
};
class bb;
using bc = au<bb>;

Command-line:
cargo run -- test.hpp --no-layout-tests --enable-cxx-namespaces --allowlist-type bc -- -std=c++14

Rust output:

/* automatically generated by rust-bindgen 0.71.1 */

#[allow(non_snake_case, non_camel_case_types, non_upper_case_globals)]
pub mod root {
    #[allow(unused_imports)]
    use self::super::root;
    pub mod std {
        #[allow(unused_imports)]
        use self::super::super::root;
        #[doc = " <div rustbindgen=\"true\" replaces=\"std::unique_ptr\">"]
        #[repr(C)]
        #[derive(Debug, Copy, Clone)]
        pub struct unique_ptr<T> {
            pub _phantom_0:
                ::std::marker::PhantomData<::std::cell::UnsafeCell<T>>,
            pub ptr: *mut T,
        }
    }
    #[repr(C)]
    #[derive(Debug, Copy, Clone)]
    pub struct au {
        pub aw: root::std::unique_ptr<T>,
    }
    #[repr(C)]
    #[derive(Debug, Copy, Clone)]
    pub struct bb {
        _unused: [u8; 0],
    }
    pub type bc = root::au;
}

Note this bit:

    pub struct au {
        pub aw: root::std::unique_ptr<T>,
    }

... we're depending on a template parameter which doesn't exist in the outer struct.

Bindgen version 20aa65a, today's HEAD.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant