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
I had an include_str inside a module, so after module inlining the path had to be adjusted.
include_str
The text was updated successfully, but these errors were encountered:
Could you provide an example input that exhibits the issue?
Sorry, something went wrong.
https://github.com/anp/criterion.rs/tree/9e2a54710b0afcaee98991376ac9abb164bfadaa
Basically
//- src/html/report.html <p>some html</p> //- src/html/mod.rs fn a() { let b = include_str!("report.html"); } //- src/lib.rs mod html;
got turned into
mod html { fn a() { let b = include_str!("report.html"); } }
The path to report.html needs to be adjusted.
report.html
No branches or pull requests
I had an
include_str
inside a module, so after module inlining the path had to be adjusted.The text was updated successfully, but these errors were encountered: