2017-07-11 14:30:10 +02: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.
|
|
|
|
|
|
2024-02-16 20:02:50 +00:00
|
|
|
//@ check-pass
|
2018-03-12 13:21:43 -07:00
|
|
|
|
2017-07-11 14:30:10 +02:00
|
|
|
#![macro_escape]
|
2020-01-10 14:57:36 +00:00
|
|
|
//~^ WARN `#[macro_escape]` is a deprecated synonym for `#[macro_use]`
|
2018-03-12 13:21:43 -07:00
|
|
|
|
|
|
|
|
fn main() {}
|