]> git.lizzy.rs Git - rust.git/blob - tests/ui/deprecation/deprecated-macro_escape.rs
Rollup merge of #96763 - Abdur-rahmaanJ:patch-1, r=Mark-Simulacrum
[rust.git] / tests / ui / deprecation / deprecated-macro_escape.rs
1 // run-pass
2
3 #[macro_escape] //~ WARNING `#[macro_escape]` is a deprecated synonym for `#[macro_use]`
4 mod foo {}
5
6 fn main() {}