]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deprecation/deprecated-macro_escape.rs
Merge commit 'bf1c6f9871f430e284b17aa44059e0d0395e28a6' into clippyup
[rust.git] / src / test / 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() {}