]> git.lizzy.rs Git - rust.git/blob - src/test/ui/deprecation/deprecated-macro_escape-inner.rs
Rollup merge of #93418 - ojeda:no-shortcut, r=camelid
[rust.git] / src / test / ui / deprecation / deprecated-macro_escape-inner.rs
1 // run-pass
2
3 mod foo {
4     #![macro_escape] //~ WARN `#[macro_escape]` is a deprecated synonym for `#[macro_use]`
5 }
6
7 fn main() {
8 }