We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug error[E0599]: no function or associated item named new found for struct root::A in the current scope
new
root::A
To Reproduce
typedef struct A { char * b; }A;
use autocxx::prelude::*; include_cpp! { #include "declare.h" safety!(unsafe_ffi) generate!("A") } fn main() { let a = ffi::A::new(); }
The text was updated successfully, but these errors were encountered:
Please could you raise a PR containing a failing test per these instructions
Sorry, something went wrong.
No branches or pull requests
Describe the bug
error[E0599]: no function or associated item named
new
found for structroot::A
in the current scopeTo Reproduce
The text was updated successfully, but these errors were encountered: