blob: dab946bb81810fd5abbd05293135b807bd819c3c [file] [log] [blame]
// 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.
// build-pass (FIXME(62277): could be check-pass?)
#![macro_escape]
//~^ WARN macro_escape is a deprecated synonym for macro_use
fn main() {}