|
|
|
|
|
by pizza234
2046 days ago
|
|
The `include!` is not intended to be used as a _generic_ inclusion mechanism¹: > Using this macro is often a bad idea, because if the file is parsed as an expression, it is going to be placed in the surrounding code unhygienically. This could result in variables or functions being different from what the file expected if there are variables or functions that have the same name in the current file. ¹=https://doc.rust-lang.org/std/macro.include.html |
|
`include!` is analogous to C’s `#include`: it textually pastes the file’s contentents in place of the macro, but I can’t think of another way that a textual (vs. semantic) include mechanism would work.