You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mod hello {include_bytes!(concat!(env!("OUT_DIR")), "/hello.rs");}
It should be include! instead of include_bytes! and parentheses are wrong. Moreover, top-level attributes make inclusion impossible. See this post and follow-ups on URLO.
The text was updated successfully, but these errors were encountered:
These lines seem to be wrong:
It should be
include!
instead ofinclude_bytes!
and parentheses are wrong. Moreover, top-level attributes make inclusion impossible. See this post and follow-ups on URLO.The text was updated successfully, but these errors were encountered: