2017-07-11 07:30:10 -05:00
|
|
|
// Testing that crate-level `#![macro_escape]` is not gated beyond a
|
|
|
|
// depecation warning. This file sits on its own, because crate-level
|
|
|
|
// `#![macro_escape]` is incompatible with crate-level `#![macro_use]`
|
|
|
|
// already present in issue-43106-gating-of-builtin-attrs.
|
|
|
|
|
2019-11-03 18:00:00 -06:00
|
|
|
// check-pass
|
2018-03-12 15:21:43 -05:00
|
|
|
|
2017-07-11 07:30:10 -05:00
|
|
|
#![macro_escape]
|
2020-01-10 08:57:36 -06:00
|
|
|
//~^ WARN `#[macro_escape]` is a deprecated synonym for `#[macro_use]`
|
2018-03-12 15:21:43 -05:00
|
|
|
|
|
|
|
fn main() {}
|