Add Cargo Expand to Macro Debugging Tips
This commit is contained in:
parent
d488d4e308
commit
4977837fad
@ -2,5 +2,6 @@
|
|||||||
|
|
||||||
## Macro Debugging
|
## Macro Debugging
|
||||||
|
|
||||||
* Print the final output of a macro using ```cargo rustc --profile=check -- -Zunstable-options --pretty=expanded```
|
- Print the final output of a macro using `cargo rustc --profile=check -- -Zunstable-options --pretty=expanded`
|
||||||
* Print output during macro compilation using ```eprintln!("hi");```
|
- Alternatively you could install and use [cargo expand](https://github.com/dtolnay/cargo-expand) which adds syntax highlighting to the terminal output.
|
||||||
|
- Print output during macro compilation using `eprintln!("hi");`
|
||||||
|
Loading…
Reference in New Issue
Block a user